MySQL的分组和排序
Posted tataerzu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL的分组和排序相关的知识,希望对你有一定的参考价值。
分组操作
select count(id) from userinfo group by pat(id); -- 聚合函数: --count --max --sum --avg ---如果对于二次函数进行二次筛选时>,必须使用having select count(id) from userinfo group by part_id having count(id)>1;
排序操作
select * from ta1 order by id desc --从大到小根据id排序 --asc 从小到大
以上是关于MySQL的分组和排序的主要内容,如果未能解决你的问题,请参考以下文章