IFNULL(expr1,expr2),如果expr1不是NULL,IFNULL()返回expr1,否则它返回expr2。 IFNULL()返回一个数字或字符串值,取决于它被使用的上下文环境。 mysql> select IFNULL(1,0); -> 1 mysql> select IFNULL(0,10); -> 0 mysql> select IFNULL(1/0,10); -> 10 mysql> select IFNULL(1/0,’yes’); -> ‘yes’ IF(expr1,expr2,expr3)如果expr1是TRUE(expr1<>0且expr1<>NULL),那么IF()返回expr2,否则它返回expr3。IF()返回一个数字或字符串值,取决于它被使用的上下文。 mysql> select IF(1>2,2,3); -> 3 mysql> select IF(1<2,’yes’,'no’); -> ‘yes’ mysql> select IF(strcmp(‘test’,'test1′),’yes’,'no’); -> ‘no’
以下是正确的语句,经过测试:
select if(event<=2,'haha',event) from cti_workevent limit 0,10; select ifnull(event,'kong') from cti_workevent limit 0,10; select if(event<=2,if(event=1,'haha11','haha22'),event) from cti_workevent limit 0,10;