Zum Ende der Metadaten springen
Zum Anfang der Metadaten

Sie zeigen eine alte Version dieser Seite an. Zeigen Sie die aktuelle Version an.

Unterschiede anzeigen Seitenhistorie anzeigen

« Vorherige Version anzeigen Version 2 Nächste Version anzeigen »

In this form of the query results of different partial queries are merged and grouped to form a new result. The following query returns a list of all the states, which have more than 10 million inhabitants.

[
	{ 
		$group : { 
			_id : "$state",
            totalPop : { 
				$sum : "$pop"
			} 
		} 
	},
	{ 
		$match : { 
			totalPop : {
				$gte : 10000000
			} 
		}
	}
]

The queries must be embedded in an array. Will the appropriate brackets forgotten, this leads to an error message.

A detailed documentation to the Mongo aggregation framework can be found here: http://docs.mongodb.org/manual/core/aggregation-introduction/

  • Keine Stichwörter