使用 pymongo 对同一索引执行多个正则表达式匹配
我需要将一些 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
另请查看未来的 $and 运算符。
顺便说一句,除非您的正则表达式是类似前缀 (
/^text/
) 的索引 不会被使用。Also take a look at future $and operator.
BTW unless your regexp is prefix-like (
/^text/
) the index won't be used.