我有查询,
db.getCollection(collection).find({$and: [
{street: {$regex: new RegExp('7/838(B) Seaport - Airport Road', 'i')}}
]})
db包含确切的数据,但不返回任何内容。如何编写正确的查询以获得结果?
答案 0 :(得分:0)
试试这个,你不需要$和那个。
db.getCollection('collection').find({"street" : new RegExp("7/838(B) Seaport - Airport Road","i")})