您好,登錄后才能下訂單哦!
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.find().pretty()
4.多條件AND查詢(xún)
db.runoob.find({'title':'data1','view':5000}).pretty()
5.多條件OR查詢(xún)
db.runoob.find({$or:[{'title':'data1'},{'view':{$gt:5000}}]}).pretty()
6.同時(shí)使用and和or的查詢(xún)
db.runoob.find({'view':{$gt:3000},$or:[{'title':'data1'},{'description':'this is data2'}]}).pretty()
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。