请教一个带正则的 Sql 查询问题

2023-11-09 17:56:52 +08:00
 TimG

数据库是 PostgreSQL ,我使用了类似如下的查询:

where A ~ 'regex'

目前需要取补集的数据,我直接用not取反了:

where not(A ~ 'regex')

结果两次获取的记录总数小于数据总量,想问下各位大佬为什么会出现这种问题?怎么写才能取到补集呢?

1215 次点击
所在节点    PostgreSQL
6 条回复
MoYi123
2023-11-09 18:08:41 +08:00
1. 有 null ?
2. 转成 not in primary key, 或者用 except
Terry166
2023-11-09 18:12:36 +08:00
use !~ instead of not
TimG
2023-11-09 18:19:24 +08:00
@MoYi123 确实是 null 的问题,谢谢!
cookii
2023-11-09 19:48:43 +08:00
null 的问题,你用=和!=也会遇到
gitrebase
2023-11-09 21:54:39 +08:00
又是一个案例,来说明列一定要 not null
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 ,两者是等价的

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/990357

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX