SELECT id,updated_time,created_time
FROM table
ORDER BY
CASE
WHEN IFNULL(updated_time,‘‘)=‘‘
THEN created_time
ELSE updated_time
END
DESC, created_time DESC;
MYSQL IFNULL函数的使用
MYSQL 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
时间: 2024-10-25 10:21:24