concat、concat_ws、group_concat函数用法
一、concat()函数可以连接一个或者多个字符串
CONCAT(str1,str2,…) 返回结果为连接参数产生的字符串。如有任何一个参数为NULL ,则返回值为 NULL。
select concat(‘11’,’22’,’33’);
查询结果显示: 112233
二、CONCAT_WS(separator,str1,str2,…)
是CONCAT()的特殊...
原创
2018-04-10 09:59:45 ·
566 阅读 ·
0 评论