主頁 > 知識庫 > SQL集合函數(shù)中case when then 使用技巧

SQL集合函數(shù)中case when then 使用技巧

熱門標簽:最新人工智能電銷機器人 如何做地圖標注圖鋪 al智能電話機器人 數(shù)字匠心電銷機器人 成都電話外呼系統(tǒng)一般多少錢 銀川高頻外呼回撥系統(tǒng)多少錢 沒聽見電話機器人幫你接 蘭州語音外呼系統(tǒng)運營商 陜西電銷外呼系統(tǒng)好用嗎

那么在集合函數(shù)中它有什么用呢 ?

假設數(shù)據(jù)庫有一張表名為student的表。

如果現(xiàn)在要你根據(jù)這張表,查出江西省男女個數(shù),廣東省男生個數(shù),浙江省男女個數(shù) 怎么寫SQL語句?即要生成下結果表

答案是: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()函數(shù)即根據(jù)給定的范圍和group by(統(tǒng)計方式) 而統(tǒng)計行數(shù)據(jù)的條數(shù)

我們一步步來理解上面語句

1.  select sex from student (查詢數(shù)據(jù)表中的存在的男女條數(shù))

2.select sex, count (*) as num from student group by sex  (查詢表中男女數(shù)量)

3.select sex ,province, count (*)as num from student group by sex,province (查詢各省男女數(shù)量)

重點來了,如果我把count(*) 中的 *號換成任一列名呢? 如count(province) 會怎樣?

4.select sex ,province, count (province)as num from student group by sex,province (查詢各省男女數(shù)量)

結果跟上圖一樣:這說明換不換都一樣。又有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

即統(tǒng)計男女數(shù)量范圍限定在浙江省 再精簡一下即下面

6.select sex, count ( case province when '浙江省' then '浙江省' end ) as 浙江省 from student group by sex

已經(jīng)接近我們的要求了,現(xiàn)在只要加上另幾個字段就是了

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

小結:當然實現(xiàn)有很多種方法 可以多個子查詢拼接起來也不無可厚非。我這只是一種思路

補充: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

您可能感興趣的文章:
  • MySQL 的CASE WHEN 語句使用說明
  • sql學習之CASE WHEN THEN ELSE END的用法
  • MySQL的CASE WHEN語句的幾個使用實例
  • MySQL中使用case when 語句實現(xiàn)多條件查詢的方法
  • sql 中 case when 語法使用方法
  • 淺析SQL語句行列轉換的兩種方法 case...when與pivot函數(shù)的應用
  • sum(case when then)(判斷男女生的個數(shù))
  • mysql case when group by 實例詳解
  • 關于case when語句的報錯問題詳解
  • MySQL排序中使用CASE WHEN的方法示例

標簽:邢臺 遼源 宜春 通化 朔州 鹽城 本溪 巴彥淖爾

巨人網(wǎng)絡通訊聲明:本文標題《SQL集合函數(shù)中case when then 使用技巧》,本文關鍵詞  SQL,集合,函數(shù),中,case,when,;如發(fā)現(xiàn)本文內容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《SQL集合函數(shù)中case when then 使用技巧》相關的同類信息!
  • 本頁收集關于SQL集合函數(shù)中case when then 使用技巧的相關信息資訊供網(wǎng)民參考!
  • 推薦文章