仅显示MongoDB集合中所有文档中的单个字段
投影意味着只有选定的字段必须可见。如果您想使其可见,请将字段设置为1。
首先让我们创建一个包含文档的集合-
> db.demo384.insertOne({"StudentName":"Chris Brown","StudentCountryName":"US"});
{
"acknowledged" : true,
"insertedId" : ObjectId("5e5b67a022064be7ab44e7f2")
}
> db.demo384.insertOne({"StudentName":"David Miller","StudentCountryName":"AUS"});
{
"acknowledged" : true,
"insertedId" : ObjectId("5e5b67ab22064be7ab44e7f3")
}
> db.demo384.insertOne({"StudentName":"John Doe","StudentCountryName":"UK"});
{
"acknowledged" : true,
"insertedId" : ObjectId("5e5b67b422064be7ab44e7f4")
}在find()方法的帮助下显示集合中的所有文档-
> db.demo384.find();
这将产生以下输出-
{ "_id" : ObjectId("5e5b67a022064be7ab44e7f2"), "StudentName" : "Chris Brown", "StudentCountryName" : "US" }
{ "_id" : ObjectId("5e5b67ab22064be7ab44e7f3"), "StudentName" : "David Miller", "StudentCountryName" : "AUS" }
{ "_id" : ObjectId("5e5b67b422064be7ab44e7f4"), "StudentName" : "John Doe", "StudentCountryName" : "UK" }以下是仅显示单个字段并忽略其余字段的查询-
> db.demo384.find({},{_id:0,StudentName:0});这将产生以下输出-
{ "StudentCountryName" : "US" }
{ "StudentCountryName" : "AUS" }
{ "StudentCountryName" : "UK" }热门推荐
10 小红书平安祝福语简短
11 生日祝福语大全女孩简短
12 收生日红包祝福语 简短
13 领证幽默祝福语简短
14 法考面试祝福语简短
15 老哥出门祝福语简短语
16 送灯祝福语简短独特
17 幼儿狗年祝福语大全简短
18 好听的元旦简短祝福语