在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 高考祝福语简短10字
18 双节祝福语简短唯美