标签:table 函数 cat style mysq img count com alt
今天看到案例是说 group by 的使用看到了,感觉还是比较不错的GROUP_CONCAT,把分组之后的字段会合并在一起。
insert into table_name(code,name,age) value(‘10001‘,‘张三丰‘,12);
insert into table_name(code,name,age) value(‘10002‘,‘张无忌‘,12);
select count(*) as counts,age,GROUP_CONCAT(code) from table_name group by age;
感觉还行,当然MS-SQL也能实现。但是Mysql很方便的。。。
MySQL group by GROUP_CONCAT函数使用
标签:table 函数 cat style mysq img count com alt
原文地址:http://www.cnblogs.com/leizhizhiyuyali/p/6074720.html