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
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
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。