标签:
Group by,where,having 是数据库查询中最常用的几个关键字。在工作中,时常用到,前面遇到一个问题,一个查询中使用了where ,group by ,having及聚集函数时 ,执行顺序是怎么样的?为了回答这个问题,将这个三个关键字的用法整理一下。
Select * from dbo.user where userDepartmentId=2
我们需要注意的是:在使用Group By的SQL语句中,select中返回的字段,必须满足以下两个条件之一:
从刚才的那个例子中,我们查询出每个城市,相同年龄的员工数量:
select city, count(*),age from dbo.user where departmentID=2 group by city,age
还是刚才的例子,我们进一步整理,查询员工数量大于20的城市和年龄段
select city, count(*),age from dbo.user where departmentID=2 group by city,age having age >40
回到本章开头的那个问题:当一个语句中同时含有where、group by 、having及聚集函数时,执行顺序如下:
标签:
原文地址:http://www.cnblogs.com/Destiny-zhl/p/4534698.html