SQL中的CASE WHEN語句

2022-01-30 23:46:25 字數 1786 閱讀 9123

今天.net新手群中有人出了這樣一道面試題:

一張表資料如下

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語句

一張表資料如下 1900 1 1勝 1900 1 1勝 1900 1 1負 1900 1 2勝 1900 1 2勝 寫出一條sql語句,使檢索結果如下 勝負1900 1 121 1900 1 220 我隨手建了這樣乙個表 create table test datevarchar 50 null,r...

SQL中的CASE WHEN語句

一張表資料如下 1900 1 1勝 1900 1 1勝 1900 1 1負 1900 1 2勝 1900 1 2勝 寫出一條sql語句,使檢索結果如下 勝負1900 1 121 1900 1 220 我隨手建了這樣乙個表 create table test datevarchar 50 null,r...

SQL中case when語句的用法

個人學習筆記,歡迎指導!用法 1 case 欄位名 when 字段值 then 值1 else 值2 end 這一種是之前比較常用的一種方式,相當於是大部分程式語言中的switch case的用法,通過欄位名,去匹配字段值,適合字段值比較固定的情況下使用,特點是比較簡潔易用。示例一 and stat...