原文:sql查询,如果有更新时间则按更新时间倒序,没有则按创建时间倒序排列
ORDER BY IFNULL(update_time,create_time) DESC
IFNULL(expr1,expr2)
如果 expr1 不是 NULL,IFNULL() 返回 expr1,否则它返回 expr2
2022-11-21 11:38:23
原文:sql查询,如果有更新时间则按更新时间倒序,没有则按创建时间倒序排列
ORDER BY IFNULL(update_time,create_time) DESC
IFNULL(expr1,expr2)
如果 expr1 不是 NULL,IFNULL() 返回 expr1,否则它返回 expr2
下一篇:k8s探针