sql >> Database >  >> NoSQL >> MongoDB

Hoe verwijder min waarde in mongodb voor groep?

Misschien wil je het volgende proberen:

// 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. dubbele matrixwaarden verwijderen uit mongodb

  2. MongoDB:Query heeft een impliciete limiet (256)?

  3. Zoek een document op basis van een verwijzing naar de ouder in het kind

  4. Query's uitvoeren op geneste objectarrays