溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

MongoDB的Limit方法返回數(shù)據(jù)

發(fā)布時間:2020-06-28 01:19:06 來源:網(wǎng)絡 閱讀:925 作者:素顏豬 欄目:MongoDB數(shù)據(jù)庫

1.查看集合

show collections

MongoDB的Limit方法返回數(shù)據(jù)

2.向集合中添加數(shù)據(jù)

db.runoob.insertMany([

{

'title':'data1',

'url':'https://blog.51cto.com/suyanzhu',

'description':'this is data1',

'view':5000

},

{

'title':'data2',

'url':'https://blog.51cto.com/suyanzhu',

'description':'this is data2',

'view':3650

},

{

'title':'data3',

'url':'https://blog.51cto.com/suyanzhu',

'description':'this is data3',

'view':9527

}

])

MongoDB的Limit方法返回數(shù)據(jù)

3.向集合添加數(shù)據(jù)

db.runoob.insert({

    title: 222, 

    description: 'mongodb',

    by: 'suyanzhu',

    url: 'https://blog.51cto.com/suyanzhu',

    tags: ['php','mongodb'],

    likes: 200

})

MongoDB的Limit方法返回數(shù)據(jù)

4.查看所有數(shù)據(jù)

db.runoob.find().pretty()

MongoDB的Limit方法返回數(shù)據(jù)

5.只返回title鍵數(shù)據(jù)

db.runoob.find({},{'title':1,'_id':0}).pretty()

MongoDB的Limit方法返回數(shù)據(jù)

6.只返回結果中2條數(shù)據(jù)

db.runoob.find({},{'title':1,'_id':0}).pretty().limit(2)

MongoDB的Limit方法返回數(shù)據(jù)

7.limit方法沒有參數(shù)返回所有數(shù)據(jù)

db.runoob.find({},{'title':1,'_id':0}).pretty().limit()

MongoDB的Limit方法返回數(shù)據(jù)

MongoDB的Limit方法返回數(shù)據(jù)

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經查實,將立刻刪除涉嫌侵權內容。

AI