码迷,mamicode.com
首页 > 其他好文 > 详细

where中不能使用聚合函数

时间:2019-10-09 23:54:46      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:针对   ati   sql语句   having   tab   group by   group   through   ora   

select sex,count(*) from table where count(*)>5

报错

 

sql语句的执行过程是:

from-->where-->group by -->having --> select--- >order by;

 

聚合函数针对结果集,where并不是在结果集后运行。

having针对结果集,把聚合函数放在having之后。

 

select sex,count(*) from table having count(*)>5

where中不能使用聚合函数

标签:针对   ati   sql语句   having   tab   group by   group   through   ora   

原文地址:https://www.cnblogs.com/linyuansun/p/11645122.html

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