在MongoDB中查询对象的字段数组值?
使用arrayFieldName及其值查询对象的字段数组值。让我们创建一个包含文档的集合-
> db.demo295.insertOne({"status":["Active","Inactive"]});{
"acknowledged" : true,
"insertedId" : ObjectId("5e4d4ea65d93261e4bc9ea39")
}
> db.demo295.insertOne({"status":["Yes","No"]});
{
"acknowledged" : true,
"insertedId" : ObjectId("5e4d4eb15d93261e4bc9ea3a")
}
在find()
方法的帮助下显示集合中的所有文档-
> db.demo295.find().pretty();
这将产生以下输出-
{"_id" : ObjectId("5e4d4ea65d93261e4bc9ea39"),
"status" : [
"Active",
"Inactive"
]
}
{
"_id" : ObjectId("5e4d4eb15d93261e4bc9ea3a"),
"status" : [
"Yes",
"No"
]
}
以下是如何在MongoDB中查询对象的字段数组值-
> db.demo295.find({status:"Inactive"});
这将产生以下输出-
{ "_id" : ObjectId("5e4d4ea65d93261e4bc9ea39"), "status" : [ "Active", "Inactive" ] }
以上是 在MongoDB中查询对象的字段数组值? 的全部内容, 来源链接: utcz.com/z/322452.html