您好,登錄后才能下訂單哦!
1.查看集合
show collections
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
}
])
3.向集合添加數(shù)據(jù)
db.runoob.insert({
title: 222,
description: 'mongodb',
by: 'suyanzhu',
url: 'https://blog.51cto.com/suyanzhu',
tags: ['php','mongodb'],
likes: 200
})
4.查看所有數(shù)據(jù)
db.runoob.find().pretty()
5.只返回title鍵數(shù)據(jù)
db.runoob.find({},{'title':1,'_id':0}).pretty()
6.只返回結果中2條數(shù)據(jù)
db.runoob.find({},{'title':1,'_id':0}).pretty().limit(2)
7.limit方法沒有參數(shù)返回所有數(shù)據(jù)
db.runoob.find({},{'title':1,'_id':0}).pretty().limit()
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經查實,將立刻刪除涉嫌侵權內容。