db.集合名.distinct('字段名').length
某一字段不同值的数量,去掉".length"将返回该字段不同值的列表
为表stationLog添加新字段sync_new,且默认值为0
db.getCollection('stationLog').update({},{$set:{sync_new:0}},{multi:true})
db.集合名.distinct('字段名').length
某一字段不同值的数量,去掉".length"将返回该字段不同值的列表
为表stationLog添加新字段sync_new,且默认值为0
db.getCollection('stationLog').update({},{$set:{sync_new:0}},{multi:true})
本文标题:Mongodb 使用记录
本文链接:https://www.haomeiwen.com/subject/zddfuktx.html
网友评论