那么在集合函数中它有什么用呢 ?
假设数据库有一张表名为student的表。
如果现在要你根据这张表,查出江西省男女个数,广东省男生个数,浙江省男女个数 怎么写SQL语句?即要生成下结果表
答案是:select sex ,count ( case province when ‘广东省’ then ‘广东省’ end )as 广东省 ,count ( case province when ‘江西省’ then ‘江西省’ end )as 江西省 ,count ( case province
本文实例讲述了MySQL使用集合函数进行查询操作。分享给大家供大家参考,具体如下:
COUNT函数
SELECT COUNT(*) AS cust_num from customers;
SELECT COUNT(c_email) AS email_num FROM customers;
SELECT o_num, COUNT(f_id) FROM orderitems GROUP BY o_num;
SUM函数
SELECT SUM(quantity) AS items_total FR