gpt4 book ai didi

mysql - 在 ORDER BY 中测试 NULL

转载 作者:行者123 更新时间:2023-12-01 00:19:56 26 4
gpt4 key购买 nike

在数据库中;有 3 列,NameCreatedDateUpdatedDate。我想制作存储过程以获取所有行的最后更新顺序或创建日期。

这是我的示例代码。

SELECT * FROM tbl_name
ORDER BY CASE WHEN UpdatedDate != null THEN UpdatedDate ELSE CreatedDate END desc

但是收到了错误的结果。有什么想法吗?

最佳答案

null 比较时,您需要 is 运算符。

SELECT * FROM tbl_name
ORDER BY CASE WHEN UpdatedDate is not null
THEN UpdatedDate
ELSE CreatedDate
END desc

或者在你的情况下你可以使用

SELECT * 
FROM tbl_name
ORDER BY coalesce(UpdatedDate, CreatedDate) desc

关于mysql - 在 ORDER BY 中测试 NULL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33299798/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com