数据库是 PostgreSQL ,我使用了类似如下的查询:
where A ~ 'regex'
目前需要取补集的数据,我直接用not
取反了:
where not(A ~ 'regex')
结果两次获取的记录总数小于数据总量,想问下各位大佬为什么会出现这种问题?怎么写才能取到补集呢?
1
MoYi123 361 天前
1. 有 null ?
2. 转成 not in primary key, 或者用 except |
2
Terry166 361 天前
use !~ instead of not
|
4
cookii 361 天前
null 的问题,你用=和!=也会遇到
|
5
gitrebase 361 天前
又是一个案例,来说明列一定要 not null
|
6
Terry166 361 天前
postgres 文档上显示取补集用 !~,刚才用查询计划看了一下,用 not 和 !~ 其实上一样的,比如:
explain select * from accounts where not (owner ~ 'regex') and owner is not null output: Filter: ((owner IS NOT NULL) AND ((owner)::text !~ 'regex'::text)) not 其实也是解释为 !~,并没有额外去掉 null ,两者是等价的 |