Mongodb查询排序操作
1.通过1控制正序显示
db.teacher.find().sort({"_id":1})
2.通过-1控制倒序显示
db.teacher.find().sort({"_id":-1})
标签:sort,db,查询,文档,mongodb5,排序,find From: https://www.cnblogs.com/shaohuang/p/17542965.html
Mongodb查询排序操作
1.通过1控制正序显示
db.teacher.find().sort({"_id":1})
2.通过-1控制倒序显示
db.teacher.find().sort({"_id":-1})
标签:sort,db,查询,文档,mongodb5,排序,find From: https://www.cnblogs.com/shaohuang/p/17542965.html