咱們都知道SQL中適用case when then來轉化數據庫中的信息數據庫
好比 select (case sex when 0 then '男' else '女' end) AS sex from studentInfo函數
那麼在集合函數中它有什麼用呢 ?3d
假設數據庫有一張表名爲student的表。blog
若是如今要你根據這張表,查出江西省男女個數,廣東省男生個數,浙江省男女個數 怎麼寫SQL語句?即要生成下結果表select
答案是:select sex ,count ( case province when '廣東省' then '廣東省' end )as 廣東省 ,count ( case province when '江西省' then '江西省' end )as 江西省 ,count ( case province when '浙江省' then '浙江省' end )as 浙江省 from student group by sex方法
count()函數即根據給定的範圍和group by(統計方式) 而統計行數據的條數im
咱們一步步來理解上面語句d3
1. select sex from student (查詢數據表中的存在的男女條數)統計
2.select sex, count (*) as num from student group by sex (查詢表中男女數量)數據
3.select sex ,province, count (*)as num from student group by sex,province (查詢各省男女數量)
重點來了,若是我把count(*) 中的 *號換成任一列名呢? 如count(province) 會怎樣?
4.select sex ,province, count (province)as num from student group by sex,province (查詢各省男女數量)
結果跟上圖同樣:這說明換不換都同樣。又有count (province)等價於 count(case province when '浙江省' then '浙江省' else province end )
可是若是咱們縮小範圍呢即count(case province when '浙江省' then '浙江省' end ) 那麼請看下面
5.select sex ,province, count ( case province when '浙江省' then '浙江省' end )as num from student group by sex,province
即統計男女數量範圍限定在浙江省 再精簡一下即下面
6.select sex, count ( case province when '浙江省' then '浙江省' end ) as 浙江省 from student group by sex
已經接近咱們的要求了,如今只要加上另幾個字段就是了
7.select sex ,count ( case province when '廣東省' then '廣東省' end )as 廣東省 ,count ( case province when '江西省' then '江西省' end )as 江西省 ,count ( case province when '浙江省' then '浙江省' end )as 浙江省 from student group by sex
小結:固然實現有不少種方法 能夠多個子查詢拼接起來也不無可厚非。我這只是一種思路
補充:case when then 知識點
(1) select (case province when '浙江省' then '浙江' when '江西省' then '江西' end ) as 省份 from student
若是默認範圍若是沒全包含則爲空 像上圖的廣東省爲空
(2)select (case province when '浙江省' then '浙江' when '江西省' then '江西' else province end ) as 省份 from student