Index: branches/feature-module-update/data/class/SC_Query.php
===================================================================
--- branches/feature-module-update/data/class/SC_Query.php	(revision 16535)
+++ branches/feature-module-update/data/class/SC_Query.php	(revision 16546)
@@ -371,4 +371,15 @@
     }
 
+    // 1列取得
+    function getCol($table, $col, $where = "", $arrval = array()) {
+        if (strlen($where) <= 0) {
+            $sqlse = "SELECT $col FROM $table";
+        } else {
+            $sqlse = "SELECT $col FROM $table WHERE $where";
+        }
+        // SQL文の実行
+        return $this->conn->getCol($sqlse, $col, $arrval);
+    }
+
     // レコードの削除
     function delete($table, $where = "", $arrval = array()) {
