当前位置: 代码迷 >> 综合 >> MongoDB查询集合中的文档 使用条件表达式 count sort skip limit
  详细解决方案

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

热度:62   发布时间:2023-09-20 09:59:28.0

//大于: 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);

db.customer.find().sort({age:-1}).skip(2).limit(3).count(1);

  相关解决方案