1.模糊查询
db.getSiblingDB("你数据库的名字").getCollection("表名").find({"列名":{$regex :/.*第五*./} })
2.精确查询
db.getSiblingDB("你数据库的名字").getCollection("表名").find({"列名":"第五" })
3.计数
db.getSiblingDB("你数据库的名字").getCollection("表名").countDocuments()
4.排序(1:升序,-1:降序)
db.getSiblingDB("你数据库的名字").getCollection("表名") .find({ "列名": "g17" }).sort({"排序字段": -1})