我有一个看起来像这样的对象 - >
{
firstTimestamp,
secondTimestamp
}
我想做以下
我将如何在sql中执行此操作?
我想的是 - >
ORDER BY
first_timestamp ASC NULLS LAST,
second_timestamp DESC
这有意义吗?
答案 0 :(得分:0)
根据您的SQL版本,这样的内容可能会有效......
Order By
Case When first_timestamp is null then 1 Else 0 End ASC,
first_timestamp ASC,
second_timestamp DESC