case具有兩種格式。簡單case函式和case搜尋函式。
--簡單case函式case ***
when
'1'then
'男'when
'2'then
'女'else
'其他'
end--case搜尋函式
case
when *** = '1'
then
'男'when *** = '2'
then
'女'else
'其他'
end
這兩種方式,可以實現相同的功能。簡單case函式的寫法相對比較簡潔,但是和case搜尋函式相比,功能方面會有些限制,比如寫判斷式。
還有乙個需要注意的問題,case函式只返回第乙個符合條件的值,剩下的case部分將會被自動忽略。
--比如說,下面這段sql,你永遠無法得到「第二類」這個結果case
when col_1 in ( 'a', 'b') then
'第一類'
when col_1 in ('a') then
'第二類'
else
'其他'
end
下面我們來看一下,使用case函式都能做些什麼事情。
一,已知資料按照另外一種方式進行分組,分析。
有如下資料:(為了看得更清楚,我並沒有使用國家**,而是直接用國家名作為primary key)
國家(country)
人口(population)
中國600
美國100
加拿大100
英國200
法國300
日本250
德國200
墨西哥50
印度250
根據這個國家人口資料,統計亞洲和北美洲的人口數量。應該得到下面這個結果。 洲人口
亞洲1100
北美洲250
其他700
想要解決這個問題,你會怎麼做?生成乙個帶有洲code的view,是乙個解決方法,但是這樣很難動態的改變統計的方式。
如果使用case函式,sql**如下:
select sum(population),case country
when
'中國'
then
'亞洲'
when
'印度'
then
'亞洲'
when
'日本'
then
'亞洲'
when
'美國'
then
'北美洲'
when
'加拿大'
then
'北美洲'
when
'墨西哥'
then
'北美洲'
else
'其他'
endfrom table_a
group
bycase country
when
'中國'
then
'亞洲'
when
'印度'
then
'亞洲'
when
'日本'
then
'亞洲'
when
'美國'
then
'北美洲'
when
'加拿大'
then
'北美洲'
when
'墨西哥'
then
'北美洲'
else
'其他'
end;
同樣的,我們也可以用這個方法來判斷工資的等級,並統計每一等級的人數。sql**如下;
selectcase
when salary <= 500 then
'1'when salary > 500 and salary <= 600 then
'2'when salary > 600 and salary <= 800 then
'3'when salary > 800 and salary <= 1000 then
'4'else
null
end salary_class,
count(*)
from table_a
group
bycase
when salary <= 500 then
'1'when salary > 500 and salary <= 600 then
'2'when salary > 600 and salary <= 800 then
'3'when salary > 800 and salary <= 1000 then
'4'else
null
end;
二,用乙個sql語句完成不同條件的分組。
有如下資料
國家(country)
性別(***)
人口(population)中國1
340中國
2260美國1
45美國255
加拿大1
51加拿大249
英國140英國260
按照國家和性別進行分組,得出結果如下 國家男
女中國340260
美國45
55加拿大
5149
英國40
60
MYSQL之CASE WHEN的簡單理解和使用
mysql中的case when有兩種寫法 簡單函式 case col name when value1 then result1 else default end搜尋函式 case when expr then result1 else default end針對乙個欄位來進行列舉,把可能的值的定...
mysql中case when的用法
設計資料庫的時候總會把使用者的性別用int儲存 0 為女,1 為男 但是怎麼把它抓換成漢子顯示呢?姓名 case when 0then 女 else 男 end as 性別 from test.student 最後的end要記得寫,查詢結果 按照使用者成績顯示優 90分以上 良 80分 90分 及格...
oracle之 case when 的用法
oracle case when的用法 select col1,col2,case when col3 1 and col3 2 then 1 when col3 2 and col3 3 then 2 when col3 3 and col3 4 then 3 else 4 end mylevel...