标签: mongodb
如何使用MongoDB查询投影作者的名字
{ name: "Wings Of Fire", author: { first: "Abdul", last: "Kalam" } }
答案 0 :(得分:19)
您可以在字段选择器中使用dot notation来投影子文档字段。在shell中:
db.test.find({}, {'author.first': 1})