PostgresQL中的NUlls first/last功能

php中文网
发布: 2016-06-07 17:25:38
原创
2176人浏览过

Nulls last表示Null值在排序时一直排在所有值的后面,也就是处理order by a desc时PostgresQL执行器认为Null值小于所有值,而ord

nulls first/last功能简介
nulls first/last功能主要用于order by排序子句中,影响空值null在排序结果中的位置。简单来说,nulls first表示null值在排序时一直排在所有值的前面,也就是处理order by a desc时postgresql执行器认为null值大于所有值,而order by a或order by a asc时执行器认为null值小于所有值,将null值排在前面。nulls last表示null值在排序时一直排在所有值的后面,也就是处理order by a desc时postgresql执行器认为null值小于所有值,而order by a或order by a asc时执行器认为null值大于所有值,,将null值排在前面。当不指定nulls first/last功能时,执行器默认认为null值要大于所有值,以此为依据处理order by子句的排序结果。

Nulls first/last功能简单展示
以下测试均为Postgres数据库下测试,数据库版本为9.2.2,测试系统为Linux。

普通表简单功能展示:

Create    table  test1(a int, b int);

Insertinto test1 values(1,2);

Insertinto test1 values(3,4);

Insertinto test1 values(5);

Select * from test1 order by b desc nulls first;

a    b

5

3    4

1    2

 

Select * from test1 order by b desc nulls last;

a    b

3    4

1    2

5

 

Select *from test1 order by b desc nulls;  报错

 

分区表简单功能展示,注意PostgresQL数据库建分区表的方式:

慧中标AI标书
慧中标AI标书

慧中标AI标书是一款AI智能辅助写标书工具。

慧中标AI标书 120
查看详情 慧中标AI标书

createtable test_hash(a int, b int);

createtable test_hash1(check(a>=0 and a

createtable test_hash2(check(a>=5)) inherits(test_hash);

 

createrule test_hash_1 as on insert to test_hash where(a>=0 and a

createrule test_hash_2 as on insert to test_hash where(a>=5) do instead insertinto test_hash2 values(NEW.a,NEW.b);

 

Insertinto test_hash values(1,2);

Insertinto test_hash values(3,4);

Insertinto test_hash values(5);

 

Select *from test_hash order by b desc nulls first;

a      b

5

3      4

2      2

 

Select *from test_hash order by b desc nulls last;

a      b

3      4

1      2

5

以上均是select语句中的order by子句进行的Nulls first/last功能展示,创建索引等其他需要order by子句的地方同理。这里只是简单的展示了一下功能,有时间会写一些剖析PostgresQL数据库的文章出来。

linux

最佳 Windows 性能的顶级免费优化软件
最佳 Windows 性能的顶级免费优化软件

每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号