SELECT vend_id,COUNT(*) AS num_prods FROM products GROUPBY vend_id;
GROUP BY子句中列出的每个列都必须是检索列或有效的表达式(但不能是聚集函数)。如果在SELECT中使用表达式,则必须在GROUP BY子句中指定相同的表达式。不能使用别名。
如果分组列中具有NULL值,则NULL将作为一个分组返回。如果有多行NULL值,它们将分为一组。
过滤分组
select cust_id,count(*) as orders from orders group by cust_id having count(*)>=2;
######
#列出具有2个以上,价格大于10的产品的供应商。
######
select vend_id,count(*) as num_prods from products where prod_price >=10 group by vend_id having count(*)>=2;
分组和排序
GROUP BY与GROUP BY差别
ORDER BY
GROUP BY
排序产生的输出
分组行。但输出的可能不是分组的顺序
任意列都可以使用(甚至非选择的列)
只可能使用选择列或表达式列,而且必须使用每个选择列表达式
不一定需要
如果与聚集函数一起使用列(或表达式),则必须使用
select order_num,sum(quantity*item_price) as ordertotal from orderitems groupby order_num havingsum(quantity*item_price) >=50orderby ordertotal;