case sex
when ‘1‘ then ‘男‘
when ‘2‘ then ‘女’
else ‘其他‘ end
--case搜索函数
case when sex = ‘1‘ then ‘男‘
when sex = ‘2‘ then ‘女‘
else ‘其他‘ end
case when col_1 in (‘a‘,‘b‘) then ‘第一类‘
when col_1 in (‘a‘) then ‘第二类‘
else ‘其他‘ end
示例:
二、IF表达式
仅适用于:MySQL
IF既可以作为表达式用,也可在存储过程中作为流程控制语句使用,如下是做为表达式使用:
IF(expr1,expr2,expr3)
如果 expr1 是TRUE (expr1 <> 0 and expr1 <> NULL),则 IF()的返回值为expr2; 否则返回值则为 expr3。IF() 的返回值为数字值或字符串值,具体情况视其所在语境而定。
三、IFNULL(expr1,expr2)
仅适用于mysql
假如expr1 不为 NULL,则 IFNULL() 的返回值为 expr1; 否则其返回值为 expr2。IFNULL()的返回值是数字或是字符串,具体情况取决于其所使用的语境。
SELECT IFNULL(1,0); -> 1 SELECT IFNULL(NULL,10); -> 10 SELECT IFNULL(1/0,10); -> 10 SELECT IFNULL(1/0,‘yes‘); -> ‘yes‘
四、ISNULL
仅适用于 sqlserver
SELECT ISNULL(null,10)
-> 10
SELECT ISNULL(1,10);
-> 1
SELECT ISNULL(1/1,‘yes‘);
-> 1
SELECT ISNULL(‘abc‘,11)
->abc
SELECT ISNULL(null,‘abc‘)
->abc
SELECT ISNULL(null,2.130)
->2.130
SELECT ISNULL(null,‘哈哈‘)
->哈哈
SELECT ISNULL(‘‘,‘哈哈‘)
->‘‘
五、IF ELSE
仅适用于 sqlserver
IF 1>0
SELECT 1
ELSE IF 1<0
SELECT 2
ELSE
SELECT 3
相关文档: https://www.yiibai.com/sqlserver/sql-server-if-else.html
下面的用法是错误的:
select
(
IF a.[胸径] != ‘‘
Begin
Cast([胸径] as float)
End
Else
Begin
End
)
from [dbo].[植物标本数据1] as a
正确的方法是使用 case when then
select
(case when [胸径] != ‘‘ and [胸径] is not null then Cast([胸径] as float) else null end) as xj
from [植物标本数据1]
参考资料:
https://www.cnblogs.com/studynode/p/9881900.html