在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 送给学长毕业祝福语简短