mongodb数据类型

查找数据类型

db.getCollection(‘users’).find({lastLearnTime:{$type:1}}).count()

修改数据类型为int

db.getCollection(‘users’).find({lastLearnTime:{$type:1}}).forEach(function(obj) {
obj.lastLearnTime = new NumberInt(obj.lastLearnTime);
db.getCollection(‘users’).save(obj);
});

mongodb数据类型

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注