在sql中,常用WHERE和HAVING来对select出来的数据做filter.二者的区别在于:
(1)HAVING用于集合函数后,例:
select country, count() as num from table1 group by country having num>10;
而不能写成....where num>10. where用于在table 中本就存在的字段,而且不能用在group by子句之后。
(2)HAVING只能用在select子句中,而where则不一定。
在sql中,常用WHERE和HAVING来对select出来的数据做filter.二者的区别在于:
(1)HAVING用于集合函数后,例:
select country, count() as num from table1 group by country having num>10;
而不能写成....where num>10. where用于在table 中本就存在的字段,而且不能用在group by子句之后。
(2)HAVING只能用在select子句中,而where则不一定。