MongoDB
 sql >> डेटाबेस >  >> NoSQL >> 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. MongoServer.State 2.0 ड्राइवर के बराबर है

  2. मोंगोडब में सीमित प्रविष्टियां

  3. मोंगो डीबी में $ लुकअप फ़ील्ड कैसे गिनें?

  4. NestJs/Mongoose में ऑटो इंक्रीमेंट सीक्वेंस

  5. स्प्रिंग डेटा क्राइटेरिया बिल्डर का उपयोग करके ऑपरेटरों को कैसे संयोजित करें?