单标签查询:
db.tags.find({tags: "blue"})
多标签匹配:
db.tags.find({ tags: { $all: ["cheap", "blue"] } } )
不等于匹配:
db.tags.find({tags: { $ne: "blue" } })
not in匹配:
db.tags.find({ $and: [ {tags: { $all: ["blue", "cheap"] } }, { tags: { $nin: ["red", "tall"] } } ] })
注意:本文归作者所有,未经作者允许,不得转载