mongodb|MongoDB查询集合中的文档 使用条件表达式 count sort skip limit

//大于: field > value
db.collection.find({field:{$gt:value}});
//小于: field < value
db.collection.find({field:{$lt:value}});
//大于等于: field >= value
db.collection.find({field:{$gte:value}});
//小于等于: field <= value
db.collection.find({field:{$lte:value}});
//不等于:field != value
db.collection.find({field:{$ne:value}});

db.customer.count();
db.customer.find().count();
db.customer.find({age:{$lt:5}}).count();
db.customer.find().sort({age:1});
db.customer.find().skip(2).limit(3);
db.customer.find().sort({age:-1}).skip(2).limit(3);
db.customer.find().sort({age:-1}).skip(2).limit(3).count();
db.customer.find().sort({age:-1}).skip(2).limit(3).count(0);
【mongodb|MongoDB查询集合中的文档 使用条件表达式 count sort skip limit】db.customer.find().sort({age:-1}).skip(2).limit(3).count(1);

    推荐阅读