MongoDB C100DBA Exam - Topic 5 Question 132 Discussion
Consider that you have a collection called population which has fields state and city. Which of the following query will calculate the population grouped by state and city?
C) db.population.aggregate( [{ $group: { _id: { state: Estate', city: n$city' },pop: { $sum: '$pop' } } }] )
A) db.population.aggregate( [{ $group: { _id: { state: '$state', city; '$city' },pop: { $sum: 1 > > >] )
B) db.population.aggregate( [{ $group: { _id: { state: Estate', city: '$city' },pop: { $pop: 1 } } }] )
D) db.population.aggregate( [{ $group: { _id: { city: '$city' },pop: { $sum: '$pop' } } }] )Multi Document Transaction is not supported by MongoDB
Currently there are no comments in this discussion, be the first to comment!