为什么在PostgreSQL查询中订购DESC时,NULL值先出现?

前端之家收集整理的这篇文章主要介绍了为什么在PostgreSQL查询中订购DESC时,NULL值先出现?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
什么时候在订购查询降序或升序时首先要NULLS?

在我看来,绝大多数时间,无论排序升序还是下降,期望的行为将是最后的.相反,我们应该首先指定NULLS FIRST.

实际上,使用默认排序顺序(ASCENDING)NULL值最后.

逻辑指示排序顺序与DESCENDING关键字相反,因此在这种情况下先排序NULL.

但最好的部分是最后的:你可以选择你想要的方式:

> Use the NULLS FIRST | LAST clause.

引用current manual,版本9.3作为写作:

If NULLS LAST is specified,null values sort after all non-null
values; if NULLS FIRST is specified,null values sort before all
non-null values. If neither is specified,the default behavior is
NULLS LAST when ASC is specified or implied
,and NULLS FIRST when DESC
is specified (thus,the default is to act as though nulls are larger
than non-nulls). When USING is specified,the default nulls ordering
depends on whether the operator is a less-than or greater-than operator.

大胆强调我的

原文链接:https://www.f2er.com/postgresql/191713.html

猜你在找的Postgre SQL相关文章