首頁 > 資料庫 > SQL > 主體

sql中case when的用法

angryTom
發布: 2020-02-13 16:35:04
原創
22501 人瀏覽過

sql中case when的用法

sql中case when的用法

case有兩種格式。簡單case函數和case搜尋函數。

1、簡單case函數

case sex
  when '1' then '男'
  when '2' then '女’
  else '其他' end
登入後複製

2、case搜尋函數

case when sex = '1' then '男'
     when sex = '2' then '女'
     else &#39;其他&#39; end</span>
登入後複製

這兩種方式,可以實現相同的功能。簡單case函數的寫法相對比較簡潔,但是和case搜尋函數相比,功能方面會有些限制,例如寫判定式。 (免費學習影片教學推薦:mysql影片教學

還有一個需要專注的問題,case函數只傳回第一個符合條件的值,剩下的case部分將會被自動忽略。

比如說,下面這段sql,你永遠無法得到「第二類」這個結果

case when col_1 in (&#39;a&#39;,&#39;b&#39;) then &#39;第一类&#39;
     when col_1 in (&#39;a&#39;) then &#39;第二类&#39;
     else &#39;其他&#39; end
登入後複製

實例示範:

先建立一個users表,其中包含id,name,sex三個字段,表格內容如下:

select * from users
 
 ID        NAME                 SEX
---------- -------------------- ----------
1          张一                 
2          张二                 1
3         张三                 
4          张四                
5          张五                 2
6          张六                 1
7          张七                 2
8          张八                 1
登入後複製

1、上表結果中的"sex"是用代碼表示的,希望將代碼用中文表示。語句中可使用case語句:

select u.id,u.name,u.sex,
   (case u.sex
      when 1 then &#39;男&#39;
      when 2 then &#39;女&#39;
      else &#39;空的&#39;
      end
     )性别
  from users u;
                                    ID NAME                        SEX 性别
--------------------------------------- -------------------- ---------- ------
                                      1 张一                            空的
                                      2 张二                          1 男
                                      3 张三                            空的
                                      4 张四                            空的
                                      5 张五                          2 女
                                      6 张六                          1 男
                                      7 张七                          2 女
                                      8 张八                          1 男
登入後複製

 2、如果不希望列表中出現"sex"列,語句如下:

select u.id,u.name,
    (case u.sex
      when 1 then &#39;男&#39;
      when 2 then &#39;女&#39;
      else &#39;空的&#39;
      end
    )性别
  from users u;
 
                                     ID NAME                 性别
--------------------------------------- -------------------- ------
                                      1 张一                 空的
                                      2 张二                 男
                                      3 张三                 空的
                                      4 张四                 空的
                                      5 张五                 女
                                      6 张六                 男
                                      7 张七                 女
                                      8 张八                 男
登入後複製

3、將sum與case結合使用,可以實現分段統計。

如果現在希望將上表中各種性別的人數進行統計,sql語句如下:

select
    sum(case u.sex when 1 then 1 else 0 end)男性,
    sum(case u.sex when 2 then 1 else 0 end)女性,
    sum(case when u.sex <>1 and u.sex<>2 then 1 else 0 end)性别为空
  from users u;
 
        男性         女性       性别为空
---------- ---------- ----------
         3          2          0
 
--------------------------------------------------------------------------------
SQL> select
    count(case when u.sex=1 then 1 end)男性,
    count(case when u.sex=2 then 1 end)女,
    count(case when u.sex <>1 and u.sex<>2 then 1 end)性别为空
  from users u;
 
        男性          女       性别为空
---------- ---------- ----------
         3          2          0
登入後複製

以上是sql中case when的用法的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板