postgresql笔记几则

1. select count(*) from A,统计所有数据包括null数据,这里会使用到聚合索引,如果判断聚合索引可以加快速度.

2. select count(a) from A,这里统计a列数据,除去null数据,如果select count(1) from a,之类的参数非表A列统

计所有数据.


3. select * from A where a = any (array(select b from B))这种比较array和scalar数据,也可以这样做:

select * from A where a = any ((select array(select b from B))::varchar[]) .

或select array(select a from A) <@ Array[1,2,3]

或:select (select array_agg(a) from A) <@ Array[1,3]

array的还原时unnest函数如:select unnest(Array[1,3])

相关文章

来源:http://www.postgres.cn/docs/11/ 4.1.1.&#160;标识符和关键词 SQL标识符和关键词必须以一个...
来源:http://www.postgres.cn/docs/11/ 8.1.&#160;数字类型 数字类型由2、4或8字节的整数以及4或8...
来源:http://www.postgres.cn/docs/11/ 5.1.&#160;表基础 SQL并不保证表中行的顺序。当一个表被读...
来源:http://www.postgres.cn/docs/11/ 6.4.&#160;从修改的行中返回数据 有时在修改行的操作过程中...
来源:http://www.postgres.cn/docs/11/ 13.2.1.&#160;读已提交隔离级别 读已提交是PostgreSQL中的...
来源:http://www.postgres.cn/docs/11/ 9.7.&#160;模式匹配 PostgreSQL提供了三种独立的实现模式匹...