MongoDB
 sql >> база данни >  >> NoSQL >> MongoDB

Как да премахнете минималната стойност в mongodb за група?

Може да искате да опитате:

// 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. MongoDB elemMatch не работи очаквано

  2. Как да започнете с автоматизацията на базата данни

  3. Уверете се, че индексът не работи - MongoDB

  4. Morphia List<Map<String,Object>>> return Вграденият елемент не е DBObject при операция за намиране

  5. Как да премахнете напълно поле от документ на MongoDB?