MongoDB
 sql >> Baza danych >  >> NoSQL >> MongoDB

Biorąc sumę kolumny w MongoDB

Korzystanie z nowej struktury agregacji MongoDB:

$result = $db->command(array(

    'aggregate' => 'COLLECTION_NAME',

    'pipeline'  => array(
        // Match:
        // We can skip this in case that we don't need to filter 
        // documents in order to perform the aggregation
        array('$match' => array(
            // Criteria to match against
        )),

        // Group:
        array('$group'  => array(
            // Groupby fields:
            '_id'       => "$fieldname1, $fieldname2, $or_empty, $etc",
            // Count:
            'count'     => array('$sum' => 1),
            // Sum:
            'type_sum'  => array('$sum' => '$type'),
        ))

        // Other aggregations may go here as it's really a PIPE :p

    ),
));


  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Korzystanie z AngularJs i MongoDB/Mongoose

  2. Obejście MongoDB dla dokumentu o rozmiarze większym niż 16 MB?

  3. Sterownik Mongo DB Java 3.x — grupowanie według zapytania

  4. Czym są podstawowe polecenia MongoDB i jak ich używać?

  5. Meteor:nieoczekiwany kod wyjścia mongo 100