dongnguyenltqb
2/14/2020 - 8:00 AM

update multi mongo doc

db.premiumCode.find({}).forEach(function(row) { 
    row.clientFullName = row.clientFirstName + " " + row.clientLastName
    db.premiumCode.save(row)
});