标签:distinct des mys sele tin order by 不同 字段 分组
相同点:将多个字符串连接成一个字符串concat
concat(str1, str2,...)
concat_ws(一次性可以指定分隔符号)
concat_ws(separator, str1, str2, ...)
group_concat(将group by产生的同一个分组中的值连接起来,返回一个字符串结果)
group_concat( [distinct] 连接字段 [order by 排序字段 asc/desc ] [separator ‘分隔符‘] )
备注:select指定的字段要么就包含在group by语句的后面,作为分组的依据,要么就包含在聚合函数中
mysql:连接字符串函数concat()、concat_ws()、group_concat()区别
标签:distinct des mys sele tin order by 不同 字段 分组
原文地址:https://blog.51cto.com/1929297/2530767