首页 > 代码库 > sql处理null值

sql处理null值

IFNULL(expr1,expr2) 
如果expr1不是NULL,IFNULL()返回expr1,否则它返回expr2。IFNULL()返回一个数字或字符串值。



select
(case when a.checktype=0 then ‘GO‘ else ‘back‘ end ) checktype,
(case when a.checkcotunt=0 then ‘left‘ end ) checktype

from checkinfo a

sql处理null值