tüm dökümanları güncellemek için
db.getCollection('FileContext').update({},
{ "$set" : {"OrderId": 1 }},
{multi:true})
ilgili collectionda sorgula
db.getCollection('FileContext').find({},{OrderId: 1, Status:1}).sort({OrderId:1})
ilgili collectionda çoklu güncelle
db.FileContext.update({},{'$set':{"Status": true}} , { multi:true})
ilgili collectionda sorgulayarak doğrula
db.FileContext.find({},{OrderId: 1, Status:1}).sort({OrderId:1})
ilgili collectionda sorgula
db.getCollection('FileContext').find({},{OrderId: 1}).sort({OrderId:1})
db.getCollection('FileContext').update({},
{ "$set" : {"OrderId": 1 }},
{multi:true})
ilgili collectionda sorgula
db.getCollection('FileContext').find({},{OrderId: 1, Status:1}).sort({OrderId:1})
ilgili collectionda çoklu güncelle
db.FileContext.update({},{'$set':{"Status": true}} , { multi:true})
ilgili collectionda sorgulayarak doğrula
db.FileContext.find({},{OrderId: 1, Status:1}).sort({OrderId:1})
ilgili collectionda sorgula
db.getCollection('FileContext').find({},{OrderId: 1}).sort({OrderId:1})
Yorumlar
Yorum Gönder