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

Jak usunąć wartość minimalną w mongodb dla grupy?

Możesz spróbować:

// this returns an array of documents which has the store_id and the minimum price for that store
myresult = db.products.aggregate( [ 
                            { $group: 
                                 { _id: "$store_id", 
                                   price: { $min: "$price" } 
                                 } 
                            } 
                            ] ).result

// loop through the results to remove the documents matching the the store id and price

for (i in myresult) { 
    db.products.remove( 
         { store_id: myresult[i]._id, price: myresult[i].price } 
    ); 
}


  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Jak zaimportować dane z pliku CSV do kolekcji Meteor po stronie serwera?

  2. Nie mogę połączyć się ze zdalnym serwerem mongodb z django/djongo

  3. Zrozumienie i zarządzanie miejscem na dysku na serwerze MongoDB

  4. Jak mogę sprawdzić duplikaty dokumentów w Mongoose?

  5. MongoAlchemy wyszukuje osadzone dokumenty