Mongodb的客户端是js写的,其实用js写脚本就可以实现。
以上面的例子来说,要将ISODate类型全都转换为NumberLong时间戳:
1、查询多少记录是ISODate类型
①、$type
- db.table_name.find({modifedDate:{$type:9}}).count()
- count=0;
- db.table_name.find().forEach(function(x){if(x.modifedDate instanceof Date){count++}});
- print(count);
使用forEach函数
- db.table_name.find({modifedDate:{$type:9}}).forEach(function(x){x.modifiedDate=NumberLong(x.modifiedDate.getTime()/1000);db.table_name.save(x)})