pymongo怎么做条件查询?


数据有有title 和intro两个属性,我要做查询,只要title或者intro包含某字符就行,这样怎么写查询语句。

pymongo python mongodb

矿工郑大世 11 years, 2 months ago

db.Data.find({ $or: [ { title: {$regex: 'test'} }, { intro: {$regex: 'test'} } ] })

可以参考官方文档:
或查询: http://docs.mongodb.org/manual/reference/operator/query/or/#op._S_or
模糊查询: http://docs.mongodb.org/manual/reference/operator/query/regex/

不给力啊老湿 answered 11 years, 2 months ago

Your Answer