1、where过滤行,having 过滤分组
2、where的用法都适用于having,他们句法相同只是关键字有差别。
SELECT cust_id,COUNT(*) AS orders FROM orders GROUP BY cust_id HAVING COUNT(*) >= 2;
在分组中会经常使用到这两个
WHERE 与HAVING同时使用的例子:
摘自于:mysql必知必会
1、where过滤行,having 过滤分组
2、where的用法都适用于having,他们句法相同只是关键字有差别。
SELECT cust_id,COUNT(*) AS orders FROM orders GROUP BY cust_id HAVING COUNT(*) >= 2;
在分组中会经常使用到这两个
WHERE 与HAVING同时使用的例子:
摘自于:mysql必知必会