MongoDB笔记七——分页
1、limit返回数据指定条数
db.persons.find({},{_id:0,name:1}).limit(3)
2、skip返回指定指定数据的跨度
db.persons.find({},{_id:0,name:1}).limit(3).skip(1)
3、sort排序
db.persons.find({},{_id:0,name:1,age:1}).sort({age:1})//递增
db.persons.find({},{_id:0,name:1,age:1}).sort({age:-1})//递减
文章题目:MongoDB笔记七——分页
网址分享:
http://dzwzjz.com/article/gpogjc.html