//例如要把User表中address字段删除
根据实际情况进行改变 db.User.update({},{$unset:{'address':''}},false, true)
//根据时间倒序查询
db.getCollection('data_collect').find({}).sort({uploadTime: -1}).limit(5)
//例如要把User表中address字段删除
根据实际情况进行改变 db.User.update({},{$unset:{'address':''}},false, true)
//根据时间倒序查询
db.getCollection('data_collect').find({}).sort({uploadTime: -1}).limit(5)