我有一个简单的表,如:int id,date created_at,date updated_at.我想对行进行排序,以便任何具有updated_at的行将按其排序,而任何不具有的行将按created_at排序.问题是,像:
SELECT * FROM table ORDER BY updated_at,created_at
不起作用.我一直在看自定义订单条款,例如:
ORDER BY CASE WHERE updated_at ISNULL <do something> END,created_at
但似乎无法得到任何工作.
救命?
编辑:
我应该指定我希望updated_at字段在created_at字段之前排序.所以,如果数据看起来像:
id created_at updated_at -- ---------- ---------- 1 2009-01-08 null 2 2009-09-08 null 3 2009-07-02 null 4 2009-09-05 2009-09-06 5 2009-04-01 null 6 2009-09-07 2009-09-08
我想要的结果如下:
id created_at updated_at -- ---------- ---------- 6 2009-09-07 2009-09-08 4 2009-09-05 2009-09-06 2 2009-09-08 null 3 2009-07-02 null 5 2009-04-01 null 1 2009-01-08 null
看起来像你在寻找:
原文链接:https://www.f2er.com/sqlite/197614.htmlORDER BY COALESCE(updated_at,created_at)
每the docs,合并回报
a copy of the first non-NULL argument.
If all arguments are NULL then NULL is
returned. There must be at least 2
arguments.
编辑:鉴于OP的编辑,他可能想要:
ORDER BY COALESCE(updated_at,'1929-9-9') DESC,created_at DESC
或类似的DESC订购技巧;或者可能
ORDER BY MAX(COALESCE(updated_at,'1929-9-9'),created_at) DESC
不可能从单一且非常特殊的例子中确切地说出OP想要什么,但是这些方法中的某些方法的变体应该解决他的实际问题,无论该问题实际上可能在具体,精确和完整的细节中.