使用場(chǎng)景
有多條相似記錄,這些記錄的大部分內(nèi)容都是相同的乌奇,需要將多條記錄合并為一條,其中存在不同值的字段需要用分隔符合并起來。
使用要求
group_concat()會(huì)計(jì)算哪些行屬于同一組拉岁,將屬于同一組的列顯示出來。要返回哪些列惰爬,由函數(shù)參數(shù)(就是字段名)決定喊暖。分組必須有個(gè)標(biāo)準(zhǔn),就是根據(jù)group by指定的列進(jìn)行分組补鼻。
group_concat()函數(shù)需要與group by語句在一起使用哄啄,才能得到需要的效果雅任。
group_concat()函數(shù)忽略NULL值,如果找不到匹配的行咨跌,或者所有參數(shù)都為NULL值沪么,則返回NULL。
代碼片段
1.多條數(shù)據(jù)合并為一條數(shù)據(jù)
select name,GROUP_CONCAT(content) content from user group by name
2.將合并后的數(shù)據(jù)去重
select name,GROUP_CONCAT(distince content) content from user group by name
3.對(duì)數(shù)據(jù)進(jìn)行排序
select name,GROUP_CONCAT(distinct content order by content asc) content from user group by name
4.分隔符默認(rèn)是英文逗號(hào)锌半,但是也可以自定義分隔符
select name,GROUP_CONCAT(distinct content order by content asc SEPARATOR '???') content from user group by name