MongoDB查询字段中的数组中是否包含某值
例子1:{id: 1,arr: ["123","456","789"]}要查询该数组里面是否含有“456”,查询语句如下:db.test.find({arr:{$elemMatch:{$eq:"456"}}})例子2:{id: 1,arr: [{id: 1,name: "bonny"},
·
例子1:
{
id: 1,
arr: [
"123",
"456",
"789"
]
}
要查询该数组里面是否含有“456”,查询语句如下:
db.test.find({arr:{$elemMatch:{$eq:"456"}}})
例子2:
{
id: 1,
arr: [
{
id: 1,
name: "bonny"
},
{
id: 2,
name: "test"
}
]
}
要查询数组里面是否包含bonny,查询语句如下:
db.test.find({arr:{$elemMatch:{name:"bonny"}}})
官网关于$elemMatch的定义如下:
该$elemMatch运算符匹配包含数组字段的文档,其中至少有一个元素与所有指定的查询条件匹配。
{ <field>: { $elemMatch: { <query1>, <query2>, ... } } } |
如果<query>
在$elemMatch表达式中仅指定一个条件 ,并且不在内部使用$not 或$ne运算符$elemMatch, $elemMatch则可以省略。请参阅 单一查询条件。
具体可以去官网看看:https://docs.mongodb.com/manual/reference/operator/query/elemMatch/
更多推荐
已为社区贡献3条内容
所有评论(0)