SQL中having与where区别
where与having区别
- where是一个约束声明,在结果返回之前起作用,且where不能与聚合函数一起使用。
- having是一个过滤声明,在查询返回结果集后,再使用having对结果集进行过滤操作,having可以跟聚合函数使用。
- 聚合函数就是例如:count,max,sum,avg等对多条数据操作的函数,需要配合group by(分组)使用。
下面给出牛客网上的一道题
###根据题目,发现需要通过学校进行分组,分组后才得到结果集,这里不能用where了
select university, avg(question_cnt) as avg_question_cnt, avg(answer_cnt) as avg_answer_cnt
from user_profile group by university having avg(question_cnt)<5 or avg(answer_cnt)<20