MongoDB
 sql >> Teknologi Basis Data >  >> NoSQL >> MongoDB

Bagaimana cara menghapus nilai min di mongodb untuk grup?

Anda mungkin ingin mencoba:

// 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 - cari berdasarkan tanggal dan waktu menggunakan driver C#

  2. Bagaimana cara mengatur pengaturan proyek Visual Studio dengan mongo-cxx-driver?

  3. node-mongodb-native MongoClient tiba-tiba menutup koneksi

  4. Subset array dalam pipa kerangka kerja agregasi

  5. Jackson tidak dapat melakukan deserialize objek MongoDB yang melewati REST