concat()函數函數
一、功能:將多個字符串鏈接成一個字符串。url
二、語法:concat(str1, str2,...)spa
返回結果爲鏈接參數產生的字符串,若是有任何一個參數爲null,則返回值爲null。3d
group_concat()函數blog
功能:將group by產生的同一個分組中的值鏈接起來,返回一個字符串結果。字符串
如:class
------->test
SELECT t.id,group_concat(url) gurl
from test t GROUP BY t.id;語法