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
posted @ 2017-05-02 17:06  越过那个限制  阅读(171)  评论(0编辑  收藏  举报