2021-07-01 将MongoDB里面的数字转为字符型
2021-07-01 本文已影响0人
kke_wang
db.collectionName.find({_id:{$exists:true}}).forEach(function(x){
x.Number=x.Number+"";
db.collectionName.save(x);
});
db.collectionName.find({_id:{$exists:true}}).forEach(function(x){
x.Number=x.Number+"";
db.collectionName.save(x);
});