菜鳥的mongoDB學習---(五)MongoDB的limit、skip、sort方法,mongodblimit

來源:互聯網
上載者:User

菜鳥的mongoDB學習---(五)MongoDB的limit、skip、sort方法,mongodblimit

limit方法

如果你需要在MongoDB中讀取指定數量的資料記錄,可以使用MongoDB的Limit方法,limit()方法接受一個數字參數,該參數指定從MongoDB中讀取的記錄條數。

mongo #進入mongoDB

<span style="line-height: 16.363636016845703px;">use NewsDB #選擇NewsDB</span>

db.new.find().limit(5) #列出前5條文檔 

註:如果你們沒有指定limit()方法中的參數則顯示集合中的所有資料。


skip方法

我們除了可以使用limit()方法來讀取指定數量的資料外,還可以使用skip()方法來跳過指定數量的資料,skip方法同樣接受一個數字參數作為跳過的記錄條數。

db.new.find().skip(5).limit(5) #跳過前5條文檔,列出6-10條文檔

注:skip()方法預設參數為 0 。


sort方法

在MongoDB中使用使用sort()方法對資料進行排序,sort()方法可以通過參數指定排序的欄位,並使用 1 和 -1 來指定排序的方式,其中 1 為升序排列,而-1是用於降序排列。

db.new.find({},{"title":1,_id:0}).sort({"title":-1}) #只顯示title屬性,並將其降序排列顯示








相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.