数据库是 PostgreSQL ,我使用了类似如下的查询:
where A ~ 'regex'
目前需要取补集的数据,我直接用not
取反了:
where not(A ~ 'regex')
结果两次获取的记录总数小于数据总量,想问下各位大佬为什么会出现这种问题?怎么写才能取到补集呢?
1
MoYi123 2023-11-09 18:08:41 +08:00
1. 有 null ?
2. 转成 not in primary key, 或者用 except |
2
Terry166 2023-11-09 18:12:36 +08:00
use !~ instead of not
|
4
cookii 2023-11-09 19:48:43 +08:00
null 的问题,你用=和!=也会遇到
|
5
gitrebase 2023-11-09 21:54:39 +08:00
又是一个案例,来说明列一定要 not null
|
6
Terry166 2023-11-10 09:33:22 +08:00
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 ,两者是等价的 |