使用方法:
concat(str1,str2,…)
mysql教程> select concat('11','22','33');
+------------------------+
| concat('11','22','33') |
+------------------------+
| 112233 |
+------------------------+
更多詳細內容請查看:http://www.111cn.net/database/110/concat_concat_ws.htm
返回結果為連接參數產生的字符串。如有任何一個參數為null ,則返回值為 null
下面看一款update 更新數據,用到了concat函數;
*/
$sql ="update `tablename` set cityid=concat(cityid,'000011') where length(cityid)>18 and cityid not like '%00000011%'";
/*
意:
如果所有參數均為非二進制字符串,則結果為非二進制字符串。
如果自變量中含有任一二進制字符串,則結果為一個二進制字符串。
一個數字參數被轉化為與之相等的二進制字符串格式