SQL語句中CASE WHEN的使用例項

2021-06-26 07:12:32 字數 1848 閱讀 7912

sql中的case when語句是經常要用到的,下面將結合例項,為您詳解case when語句的使用,供您參考,希望對您學習sql語句能有所幫助。

一張表資料如下

1900-1-1 勝

1900-1-1 勝

1900-1-1 負

1900-1-2 勝

1900-1-2 勝

寫出一條sql語句,使檢索結果如下:

勝  負

1900-1-1 2   1

1900-1-2 2   0

我隨手建了這樣乙個表:

create table test(date varchar

(50) null, result varchar

(50) null)

並將上面的資料都插入到表中。

經過一番嘗試和修改,終於得到了答案:

select distinct date,

sum(

case result when

'勝'

then 1 else 0 end

) as

'勝',

sum(

case result when

'負'

then 1 else 0 end

) as

'負'from test

group by date

這裡我要說的,其實是sql中case when的用法。它在普通的sql語句中似乎並不常見,我本人以前也沒在實際專案中使用過。遇到類似問題,往往通過**或多條sql語句實現。或者是如下這種醜陋的sql,並且還伴隨著很多潛在的bug(如,當沒有『負』時)。

select a.date,a.a1 勝,b.b1 負 from 

(select date,

count

(date) a1 from test where result =

'勝'

group by date) a,

(select date,

count

(date) b1 from test where result =

'負'

group by date) b

where a.date=b.date

我們不妨來複習一下case when的語法。

case when有兩種用法,一種是類似上面例子中那樣的簡單case函式:

case result

when

'勝'

then 1

when

'負'

then 2

else 0

end

還有一種是case搜尋函式:

case when result=

'勝'

then 1

when result=

'負'

then 2

else 0

end

其中result='勝'可以替換為其他條件表示式。如果有多個case when表示式符合條件,將只返回第乙個符合條件的子句,其餘子句將被忽略。

用case when語句可以簡化我們平時工作中遇到的很多問題。如性別在表中存的是數字1、2,但是希望查詢出來男、女時,可以這樣:

select 

(case gender when 1 then

'男'

when 2 then

'女'

else

'其他'

end)

as gender from table1

sql語句中case when的用法

case when是sql語句中很常用的一種判斷語句,與他類似的是decade,但是mysql中沒有這個函式,所以case when是通用的 一 最簡單的用法 case buynum when 1 then 多 when 2 then 少 else 其他 end 二 在where條件中的使用 sel...

SQL語句中case when的使用

根據使用者連續登陸的天數,增加不同的經驗值,如果通過select語句先查詢出來登陸天數,再通過天數去判斷應該增加多少經驗值的話,做多次查詢開啟多次事務效率肯定比較低,用儲存過程的話,感覺也沒有太大必要,所以還是用資料庫提供的方法 case when來解決好了 大家對if else語句可能都很熟悉,它...

SQL語句中CASE WHEN的使用例項

sql中的case when語句是經常要用到的,下面將結合例項,為您詳解case when語句的使用,供您參考,希望對您學習sql語句能有所幫助。一張表資料如下 1900 1 1 勝 1900 1 1 勝 1900 1 1 負 1900 1 2 勝 1900 1 2 勝 寫出一條sql語句,使檢索結...