mongdb 更新字段类型

//$type:1等于1表示是double类型  或者 type:"double"  

mongdb 更新字段类型

 

 

 

db.getCollection(‘HotLocation‘).find({"PlaceType":{$type:1}})
.forEach(
function(x)
{

//转换成int类型
x.PlaceType=NumberInt(x.PlaceType);
//修改数据类型
db.getCollection(‘HotLocation‘).update({"_id" : x._id},{$set:{"PlaceType" : x.PlaceType}})
})

//数据多  需要多次执行

mongdb 更新字段类型

上一篇:jmeter连接数据库


下一篇:mysql主从不一致--relay_log_recovery设置成0