Index: branches/dev/data/class/SC_CustomerList.php
===================================================================
--- branches/dev/data/class/SC_CustomerList.php	(revision 221)
+++ branches/dev/data/class/SC_CustomerList.php	(revision 222)
@@ -78,6 +78,10 @@
 		// Ì¾Á°
 		if ( strlen($this->arrSql['name']) > 0 ) {
-			//$this->setWhere("(name01 || name02 LIKE ?)" );
-			$this->setWhere("(name01 LIKE ?)" );
+			if(DB_TYPE == "pgsql"){
+				$this->setWhere("(name01 || name02 LIKE ?)" );
+			}elseif(DB_TYPE == "mysql"){
+				$this->setWhere("concat(name01,name02) LIKE ?)" );
+			}
+
 			$searchName = $this->addSearchStr($this->arrSql['name']);
 			$this->arrVal[] = mb_ereg_replace("[ ¡¡]+","",$searchName);
