DB2NULLS LAST与NULLS FIRST
Posted 奔跑的金鱼
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DB2NULLS LAST与NULLS FIRST相关的知识,希望对你有一定的参考价值。
DB2函数配合
select row_number() over(order by col desc nulls first/nulls last ) as rn,col from table1order by rn;
nulls first:把空值放到最前面,再对非空值排序
nulls last:把空值放到最后面在对非空值排序
以上是关于DB2NULLS LAST与NULLS FIRST的主要内容,如果未能解决你的问题,请参考以下文章
如何在 MySQL 排序中控制 nulls-first 或 nulls-last?
mybatis使用oracle的nulls first/nulls last
Oracle 排序中使用nulls first 或者nulls last 语法