在MongoDB中如何复制属性?
要将一个属性的值复制到另一个属性,请使用$set和update()。让我们创建一个包含文档的集合
> db.demo55.insertOne({"ShippingDate":'',"date":new ISODate("2019-01-21")});
{
"acknowledged" : true,
"insertedId" : ObjectId("5e2716dfcfb11e5c34d89915")
}
> db.demo55.insertOne({"ShippingDate":'',"date":new ISODate("2020-05-12")});
{
"acknowledged" : true,
"insertedId" : ObjectId("5e2716ebcfb11e5c34d89916")
}> db.demo55.find();
{ "_id" : ObjectId("5e2716dfcfb11e5c34d89915"), "ShippingDate" : "", "date" : ISODate("2019-01-21T00:00:00Z") }
{ "_id" : ObjectId("5e2716ebcfb11e5c34d89916"), "ShippingDate" : "", "date" : ISODate("2020-05-12T00:00:00Z") }> db.demo55.find({}).forEach(function(c){
... db.demo55.update({_id: c._id}, {$set: {ShippingDate:c.date}});
... });> db.demo55.find();
{ "_id" : ObjectId("5e2716dfcfb11e5c34d89915"), "ShippingDate" : ISODate("2019-01-21T00:00:00Z"), "date" : ISODate("2019-01-21T00:00:00Z") }
{ "_id" : ObjectId("5e2716ebcfb11e5c34d89916"), "ShippingDate" : ISODate("2020-05-12T00:00:00Z"), "date" : ISODate("2020-05-12T00:00:00Z") }热门推荐
10 订亲求婚蛋糕祝福语简短
11 跳舞祝福语女生文案简短
12 朋友夜晚祝福语简短幽默
13 药店五一祝福语简短幽默
14 高校女生祝福语大全简短
15 获奖评语简短祝福语大全
16 过年送礼祝福语简短精辟
17 画室期末祝福语大全简短
18 生日祝福语陌生女生简短