14 sort和投影
//查询文档时,默认按照id值进行排列
db.emp.find({});
//sort用来指定文档的排序规则
db.emp.find({}).sort({sal:1});
//降序
db.emp.find({}).sort({sal:-1});
db.emp.find({}).sort({sal:1,empno:-1});
//查询时,可以在第二个参数位置设置查询结果,投影
db.emp.find({},{ename:1,_id=0,sal=1});
limit/skip/sort调用顺序和写的顺序无关。