case when用法

在sql中判断非A即B类似的表达式时,可以用“case-when”句式来判断。

When judge expression as not A is B,

语法:

 

CASE WHEN condition THEN result

[WHEN ...]

[ELSE result]

END

 

CASE 子句可以用于任何表达式可以有效存在的地方。condition是一个返回boolean的表达式。 如果结果为真,那么CASE 表达式的结果就是符合条件的result。 如果结果为假,那么以相同方式搜寻任何随后的WHEN子句。如果没有WHEN condition为真,那么case表达式的结果就是在ELSE 子句里的值。如果省略了ELSE子句而且没有匹配的条件, 结果为 NULL。

 

--简单Case函数
CASE sex
         
WHEN '1' THEN ''
         
WHEN '2' THEN ''
ELSE '其他' END
--Case搜索函数
CASE WHEN sex = '1' THEN ''
         
WHEN sex = '2' THEN ''
ELSE '其他' END

 

如查询MySql中列转行:

 

select max(case when chinese>=80 then '优秀' when 80>chinese and chinese>=60 then '及格' when chinese<60 then

 '不及格' else chinese end) as '语文',

max(case when maths>=80 then '优秀' when 80>maths and maths>=60 then '及格' when maths<60 then

 '不及格' else maths end) as '数学',

max(case when english>=80 then '优秀' when 80>english and english>=60 then '及格' when english<60 then

 '不及格' else english end) as '英语'

from score

 

你可能感兴趣的:(sql)