MongoDB投影子文档

时间:2013-02-25 23:54:19

标签: mongodb

如何使用MongoDB查询投影作者的名字

{
 name: "Wings Of Fire",
 author:
 {
  first: "Abdul",
  last: "Kalam"
 }
}

1 个答案:

答案 0 :(得分:19)

您可以在字段选择器中使用dot notation来投影子文档字段。在shell中:

db.test.find({}, {'author.first': 1})