他のデータベースからの移行で、MySQLのSELECT列連結で || が使えないものかと思い、調べてると方法がわかりました。
sql_mode に、PIPES_AS_CONCAT を加えると出来ます。
[ my.cnf 例 ]
sql_mode='NO_ENGINE_SUBSTITUTION,PIPES_AS_CONCAT'
[ SELECT結果例 ]
mysql> select concat(host,user,plugin) from mysql.user where user = 'root' and host = 'localhost'; +------------------------------------+ | concat(host,user,plugin) | +------------------------------------+ | localhostrootmysql_native_password | +------------------------------------+ 1 row in set (0.00 sec) mysql> select host || user || plugin from mysql.user where user = 'root' and host = 'localhost'; +------------------------------------+ | host || user || plugin | +------------------------------------+ | localhostrootmysql_native_password | +------------------------------------+ 1 row in set (0.00 sec)
ここで教えていただきました : http://proengineer.internous.co.jp/content/columnfeature/6836#section200
|