MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Ottenere un elenco di oggetti incorporati/nidificati univoci in un documento MongoDB

Usa distinct per trovare una matrice di valori distinti per ingredients.name

db.recipes.distinct('ingredients.name')

produce [ "butter", "cheese", "noodles", "flour", "sugar", "water" ]