Nulls first和nulls last

Posted guoshunwgs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nulls first和nulls last相关的知识,希望对你有一定的参考价值。

Nulls first和nulls last是Oracle Order by支持的语法
如果Order by 中指定了表达式Nulls first则表示null值的记录将排在最前(不管是asc 还是 desc)
如果Order by 中指定了表达式Nulls last则表示null值的记录将排在最后 (不管是asc 还是 desc)
使用语法如下:
--将nulls始终放在最前
select * from zl_cbqc order by cb_ld nulls first
 
--将nulls始终放在最后
select * from zl_cbqc order by cb_ld desc nulls last
 
转自:http://blog.csdn.net/shipeng22022/article/details/25772513

以上是关于Nulls first和nulls last的主要内容,如果未能解决你的问题,请参考以下文章

nulls last和null first

mybatis使用oracle的nulls first/nulls last

如何在 MySQL 排序中控制 nulls-first 或 nulls-last?

DB2NULLS LAST与NULLS FIRST

BigQuery FIRST_VALUE 和 IGNORE_NULLS - 为啥它会这样工作?

休眠错误消息:意外令牌:NULLS(脚本文件行中的错误:13 意外令牌:NULLS)