MongoDB 查询以从数组中检索所有内容?
MongoDB query to retrieve all the content from array?
我有更多数组,但我只想检索“PIZZAS”的内容
谁能告诉我哪个是正确的查询?
您可以通过投影来完成此操作。在 mongo shell 中它看起来像这样:
db.collection.find({}, { PIZZAS: 1, _id: 0})
我有更多数组,但我只想检索“PIZZAS”的内容
谁能告诉我哪个是正确的查询?
您可以通过投影来完成此操作。在 mongo shell 中它看起来像这样:
db.collection.find({}, { PIZZAS: 1, _id: 0})