mongodb排序
时间:2021-07-14 18:44:18
收藏:0
阅读:0
使用sort即可,如下:
db.adu.find().sort({"Age":-1})
其中,Age为排序字段,-1表示降序,1表示升序
评论(0)
使用sort即可,如下:
db.adu.find().sort({"Age":-1})
其中,Age为排序字段,-1表示降序,1表示升序