假设我有mongo数据库:
[
{
name: tom,
tags: ["a","b"]
}
{
name: lee,
tags: ["b","c", "d"]
}
{
name: jack,
tags: ["c","d"]
}
]
我想找到标记包含b
的对象,如上面tom
和lee
那么我可以使用哪个查询语句?
答案 0 :(得分:2)
db.collection.find({ tags: "b" })
这很简单。