使用 pymongo 对同一索引执行多个正则表达式匹配

发布于 2024-11-14 09:27:12 字数 648 浏览 2 评论 0原文

我需要将一些 MySQL 转换为 mongodb。我有一个 MySQL 查询,其中一列上有多个正则表达式匹配。是否可以用 mongodb 做同样的事情?

SELECT * FROM table WHERE column1 REGEXP r1 AND column1 REGEXP r2 AND colum1 REGEXP r3;

使用 pymongo,我可以使用单个正则表达式执行正则表达式搜索,如下所示:

regex1 = re.compile(r1)
db.collection.find({"column1":regex1})

db.collection.find({"column1":{"$regex":"r1"}})

How do I add multiple regex on column1?

这些不起作用:

{"column1":regex1,"column1":regex2}
{"column1":{"$regex":"r1","$regex":"r2"}}
{"column1":[regex1,regex2]}
{"column1":{"$regex":["r1","r2"]}}

I need to translate some MySQL to mongodb. I have a MySQL query with multiple regular expression matches on one column. Is it possible to do the same thing with mongodb?

SELECT * FROM table WHERE column1 REGEXP r1 AND column1 REGEXP r2 AND colum1 REGEXP r3;

With pymongo I can perform regex searches with single regex like so:

regex1 = re.compile(r1)
db.collection.find({"column1":regex1})

or

db.collection.find({"column1":{"$regex":"r1"}})

How do I add multiple regexes on column1?

These do not work:

{"column1":regex1,"column1":regex2}
{"column1":{"$regex":"r1","$regex":"r2"}}
{"column1":[regex1,regex2]}
{"column1":{"$regex":["r1","r2"]}}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

掩耳倾听 2024-11-21 09:27:12
db.collection.find({"column1": {"$all": [re.compile("r1"), re.compile("r2")]}})

另请查看未来的 $and 运算符

顺便说一句,除非您的正则表达式是类似前缀 (/^text/) 的索引 不会被使用

db.collection.find({"column1": {"$all": [re.compile("r1"), re.compile("r2")]}})

Also take a look at future $and operator.

BTW unless your regexp is prefix-like (/^text/) the index won't be used.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文