大于 ($gt)、大于等于 ($gte )、小于 ($lt)、大于等于 ($lte)、等于($eq)
查询价格小于100的商品
db.product1.find({price:{$lt:100}})
查询价格200-9000之间的商品
db.product1.find({price:{$gt:200,$lt:9000}})
统计个数
//统计文档的个数
db.product1.count()
db.product1.find({"name":"iPhoneX"})
db.product1.find({"name":"iPhoneX"}).count()
限制查询的显示数量 limit()
跳过 skip()
//分页 limit() 限制查询的显示数量
db.product1.find({"price":{$gt:100}}).limit(5)
//跳过 skip()
db.product1.find({"price":{$gt:100}}).skip(2)
//实现分页效果 先跳,再分
db.product1.find({"price":{$gt:100}}).skip(2).limit(5)