mongodb常用操作

多条件查询

db.getCollection('adv_account_inermediate').find({$and:[{'mediaId':103},{'dt':'2019082616'}]}).count()

单条件查询

db.getCollection('adv_account_inermediate').find({'mediaId':103}).count()

排序

db.getCollection('samsung_order_consume_daily').find({}).sort({'createTime':-1})

查看集合索引

db.getCollection('samsung_order_consume_daily').getIndexes()

添加单个索引

db.getCollection('charles').ensureIndex({"username":1})

添加多个索引

db.getCollection('charles').ensureIndex({"username":1,"age":1})

查看mongodb表大小

db.getCollection('charles').stats(1048576)
  • stats() 参数为空返回的是字节
  • 如果想要返回KB db.stats(1024)
  • 如果想要返回MB db.stats(1048576)
  • 如果想要返回GB db.stats(1073741824)

你可能感兴趣的:(mongodb常用操作)