CONCAT_WS
使用函数CONCAT_WS()。...使用语法为:
CONCAT_WS(separator,str1,str2,…)
CONCAT_WS() 代表 CONCAT With Separator ,是CONCAT()的特殊形式。...mysql> select concat_ws(',','x','y','z');
+----------------------------+
| concat_ws(',','x','y','z')...CONCAT()函数用于将多个字符串连接成一个字符串。...mysql> select concat(',','x','y','z');
+-------------------------+
| concat(',','x','y','z') |
+-----