sql >> Database teknologi >  >> NoSQL >> MongoDB

Hvordan fjerner min værdi i mongodb for gruppe?

Du vil måske prøve:

// 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. MongoDB - Opret et dokument

  2. Tekstsøgning for tekst anden giver altid ingen resultater?

  3. Hvorfor tager mongodump ikke backup af indekser?

  4. MongoDB-kommandoer fra DOS eller Windows