Home Postgres 排序时对于string类型的列不能简单的order_by_xx_asc会发现null排在首位
Post
Cancel

Postgres 排序时对于string类型的列不能简单的order_by_xx_asc会发现null排在首位

refer to:

https://stackoverflow.com/questions/7621205/sort-null-values-to-the-end-of-a-table

需要使用语句: order by xx desc nulls last

上面的 nulls  last就表示,把nulls 的值放到最后。 (也可以改成first)

This post is licensed under CC BY 4.0 by the author.