码迷,mamicode.com
首页 > 数据库 > 详细

mysql分组查询和排序

时间:2020-11-25 12:38:15      阅读:10      评论:0      收藏:0      [点我收藏+]

标签:span   nbsp   group by   where   class   函数   math   group   user   

group by和order by

  分组后的字段要么是分组字段或聚合函数

  where和having区别:

    where:在分组之前进行限定;后面不能跟聚合函数的判断

    having:在分组之后进行限定,如果不满足结果就不会显示出来;后面可以跟聚合函数判断

select user_name from t_user group by user_name order by id
select sex,avg(math) ,count(id) ID from student group by sex having ID>2;  --ID是别名

 

mysql分组查询和排序

标签:span   nbsp   group by   where   class   函数   math   group   user   

原文地址:https://www.cnblogs.com/Difcipo/p/14016906.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!