這篇文章將為大家詳細(xì)講解有關(guān)MongoDB中數(shù)組類型的操作示例,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
成都創(chuàng)新互聯(lián)公司-成都網(wǎng)站建設(shè)公司,專注成都網(wǎng)站建設(shè)、網(wǎng)站建設(shè)、網(wǎng)站營銷推廣,申請(qǐng)域名,網(wǎng)頁空間,成都網(wǎng)站托管有關(guān)企業(yè)網(wǎng)站制作方案、改版、費(fèi)用等問題,請(qǐng)聯(lián)系成都創(chuàng)新互聯(lián)公司。
在MongoDB的模式中,我們經(jīng)常將一些數(shù)據(jù)存儲(chǔ)到數(shù)組類型中,即我們常見的嵌套模式設(shè)計(jì)的一種實(shí)現(xiàn)方式。數(shù)組的這種設(shè)計(jì)實(shí)現(xiàn)方式在關(guān)系數(shù)據(jù)庫中是沒有或者說不常見的。所以,通過本文我們來梳理一下MongoDB的數(shù)組的相關(guān)操作。關(guān)于數(shù)組的操作可以分成兩類,一類是數(shù)組操作符,另一個(gè)是數(shù)組運(yùn)算修飾符。
數(shù)組操作符
操作符 | 實(shí)現(xiàn)功能 |
$ | 根據(jù)查詢選擇器定位要更新的文檔 |
$push | 添加值到數(shù)組中 |
$pushAll | 添加數(shù)組到一個(gè)數(shù)組中。(將被$rach取代) |
$addToSet | 添加值到數(shù)組中,重復(fù)了也不處理 |
$pop | 從數(shù)組中刪除第一個(gè)或者最后一個(gè)值。 |
$pull | 從數(shù)組中刪除匹配查詢條件的值。 |
$pullAll | 從數(shù)組中刪除多個(gè)值。 |
數(shù)組運(yùn)算修飾符
修飾符 | 實(shí)現(xiàn)功能 |
$each | 與$push和$addToSet一起使用來操作多個(gè)值。 |
$slice | 與$push和$each一起使用來縮小更新后數(shù)組的大小。 |
$sort | 與$push、$each、$slice一起來排序數(shù)組中的子文檔。 |
1.$push操作符
$push 主要用來向數(shù)組中添加元素。
語法:
{ $push: {: , ... } }
默認(rèn)情況下,它會(huì)在數(shù)組尾部添加一個(gè)單獨(dú)的元素。
假如我們有一個(gè)學(xué)生成績的集合studentscore,其文檔格式如下:
{ "_id" : 1, "name" : "xiaoming", "score" : [ { "math" : 99, "english" : 89 } ] } { "_id" : 2, "name" : "xiaohong", "score" : [ { "math" : 98, "english" : 96 } ] }
其中的需求為,更新_id 為1的文檔記錄,在分?jǐn)?shù)數(shù)組的字段上,添加 物理學(xué)的成績,修改代碼為
db.studentscore.update({_id:1},{$push: {score:{"physics":100}}})
修改后,結(jié)果查詢?nèi)缦拢?/p>
{ "_id" : 1, "name" : "xiaoming", "score" : [ { "math" : 99, "english" : 89 }, { "physics" : 100 } ] } { "_id" : 2, "name" : "xiaohong", "score" : [ { "math" : 98, "english" : 96 } ] }
如果一次將多個(gè)值添加到數(shù)組中,可結(jié)合 數(shù)組修改符 $each 一起使用。
例如,我們將小紅的(_id =2)的物理成績、化學(xué)成績、生物成績一起添加到文檔中。執(zhí)行的語句如下:
db.studentscore.update({ _id: 2 }, { $push: { score: { $each: [{ "physics": 100 }, { "chemistry": 90 }, { "biology": 99 }] } } } )
查詢的結(jié)果如下:
{ "_id" : 1, "name" : "xiaoming", "score" : [ { "math" : 99, "english" : 89 }, { "physics" : 100 } ] } { "_id" : 2, "name" : "xiaohong", "score" : [ { "math" : 98, "english" : 96 }, { "physics" : 100 }, { "chemistry" : 90 }, { "biology" : 99 } ] }
前面講了$each 數(shù)組運(yùn)算修飾符,那我們?cè)倥e一個(gè)例子,將剩余的兩個(gè)修飾符一起講解了好了($sort 和 $slice)
例如,我們有文檔記錄如下:
{ "_id" : 5, "quizzes" : [ { "wk": 1, "score" : 10 }, { "wk": 2, "score" : 8 }, { "wk": 3, "score" : 5 }, { "wk": 4, "score" : 6 } ] }
現(xiàn)在我們,有個(gè)需求,就是 首先向文檔的quizzes數(shù)組字段,追加三個(gè)記錄,然后,我們?cè)侔凑誷core排序,選取數(shù)組中的前三個(gè)元素。
db.students.update( { _id: 5 }, { $push: { quizzes: { $each: [ { wk: 5, score: 8 }, { wk: 6, score: 7 }, { wk: 7, score: 6 } ], $sort: { score: -1 }, $slice: 3 } } } )
更新后的結(jié)果顯示如下:
{ "_id" : 5, "quizzes" : [ { "wk" : 1, "score" : 10 }, { "wk" : 2, "score" : 8 }, { "wk" : 5, "score" : 8 } ]}
$slice操作修飾符是在MongoDB 2.4 里添加的,其目的是方便管理經(jīng)常更新的數(shù)組。當(dāng)向數(shù)組添加值但是不想數(shù)組太大的時(shí)候,這個(gè)操作符非常有用。它必須與$push、$each操作符一起使用,允許用來剪短數(shù)組的大小、刪除舊的值。
與$slice操作修飾符很像,MongoDB 2.4 新增了$sort操作修飾符,幫助更新數(shù)組。當(dāng)使用$push和$slice時(shí),有時(shí)候要先排序再刪除它們。
$pop操作符可以實(shí)現(xiàn)從數(shù)組中刪除第一個(gè)或者是最好一個(gè)元素。
{ $pop: {: <-1 | 1>, ... } }
參數(shù)為-1 ,代表要?jiǎng)h除數(shù)組中的第一個(gè)元素;參數(shù)為1 ,代表要?jiǎng)h除數(shù)組中的最后一個(gè)元素。
例如集合students 中有以下文檔:
{ _id: 1, scores: [ 8, 9, 10 ] }
我們的需求是要把數(shù)組中的第一個(gè)元素(成績?yōu)?)移除,SQL 語句如下:
db.students.update( { _id: 1 }, { $pop: { scores: -1 } } )
更新后,文檔如下
{ _id: 1, scores: [ 9, 10 ] }
繼續(xù)演示,如果在現(xiàn)有的基礎(chǔ)上,我們需要進(jìn)一步把數(shù)組的最后一個(gè)元素移除(成績?yōu)?0),更新的sQL如下:
db.students.update( { _id: 1 }, { $pop: { scores: 1 } } )
查詢結(jié)果 如下:
{ _id: 1, scores: [ 9 ] }
$pull操作符
$pull是$pop的復(fù)雜形式。使用$pull,可以通過值精確指定要?jiǎng)h除的元素。
語法格式
{ $pull: {: , : , ... } }
測試文檔如下:
{ _id: 1, fruits: [ "apples", "pears", "oranges", "grapes", "bananas" ], vegetables: [ "carrots", "celery", "squash", "carrots" ]} { _id: 2, fruits: [ "plums", "kiwis", "oranges", "bananas", "apples" ], vegetables: [ "broccoli", "zucchini", "carrots", "onions" ]}
操作要求是將 數(shù)組字段fruits中的"apples"
and "oranges" 移除,還要將vegetables數(shù)組字段中的"carrots" 移除,其更新語句如下:
db.stores.update( { }, { $pull: { fruits: { $in: [ "apples", "oranges" ] }, vegetables: "carrots" } }, { multi: true } )
更新后的結(jié)果如下:
{ "_id" : 1, "fruits" : [ "pears", "grapes", "bananas" ], "vegetables" : [ "celery", "squash" ]} { "_id" : 2, "fruits" : [ "plums", "kiwis", "bananas" ], "vegetables" : [ "broccoli", "zucchini", "onions" ]}
此時(shí),集合文檔中,fruit的數(shù)組字段 沒有apples也沒有
oranges,vegetables數(shù)組字段也沒有了carrots。
假如我們有一個(gè) profiles 的集合,其文檔格式如下:
{ _id: 1, votes: [ 3, 5, 6, 7, 7, 8 ] }
我們要把votes大于等于6的元素移除,其語句如下:
db.profiles.update( { _id: 1 }, { $pull: { votes: { $gte: 6 } } } )
更新后的結(jié)果如下:
{ _id: 1, votes: [ 3, 5 ] }
假設(shè)我們有一個(gè)關(guān)于 調(diào)查的集合 survey,其數(shù)據(jù)如下:
{ _id: 1, results: [ { item: "A", score: 5 }, { item: "B", score: 8, comment: "Strongly agree" } ]} { _id: 2, results: [ { item: "C", score: 8, comment: "Strongly agree" }, { item: "B", score: 4 } ]}
需求是將 score 為
8
并且 item
為 "B"的元素移除
db.survey.update( { }, { $pull: { results: { score: 8 , item: "B" } } }, { multi: true } )
更新后的文檔如下:
{ "_id" : 1, "results" : [ { "item" : "A", "score" : 5 } ]} { "_id" : 2, "results" : [ { "item" : "C", "score" : 8, "comment" : "Strongly agree" }, { "item" : "B", "score" : 4 } ]}
此時(shí)就要用到 $elemMatch操作符。
例如 文檔格式如下:
{ _id: 1, results: [ { item: "A", score: 5, answers: [ { q: 1, a: 4 }, { q: 2, a: 6 } ] }, { item: "B", score: 8, answers: [ { q: 1, a: 8 }, { q: 2, a: 9 } ] } ] } { _id: 2, results: [ { item: "C", score: 8, answers: [ { q: 1, a: 8 }, { q: 2, a: 7 } ] }, { item: "B", score: 4, answers: [ { q: 1, a: 0 }, { q: 2, a: 8 } ] } ] }
需要將 results數(shù)組字段 移除,移除的條件是 results數(shù)組字段中的answers字段,符合 q
為 2
and a
大于等于 8。
db.survey.update( { }, { $pull: { results: { answers: { $elemMatch: { q: 2, a: { $gte: 8 } } } } } }, { multi: true } )
更新后的數(shù)據(jù)如下:
{ "_id" : 1, "results" : [ { "item" : "A", "score" : 5, "answers" : [ { "q" : 1, "a" : 4 }, { "q" : 2, "a" : 6 } ] } ] } { "_id" : 2, "results" : [ { "item" : "C", "score" : 8, "answers" : [ { "q" : 1, "a" : 8 }, { "q" : 2, "a" : 7 } ] } ] }
使用$addToSet也會(huì)往數(shù)組后面添加值,但是它比較特殊:它只會(huì)添加數(shù)組里不存在的值。
{ $addToSet: {: , ... } }
假如有一個(gè)集合 inventory
格式如下
{ _id: 1, item: "polarizing_filter", tags: [ "electronics", "camera" ] }
我們希望向向字段 tags 數(shù)組 ,添加一個(gè)元素accessories,則更新語句如下:
db.inventory.update( { _id: 1 }, { $addToSet: { tags: "accessories" } } )
更新后的結(jié)果為
{ "_id" : 1, "item" : "polarizing_filter", "tags" : [ "electronics", "camera", "accessories" ] }
如果想批量的增加如果元素,我們可以結(jié)合 $each 操作符一起使用。
例如以下文檔
{ _id: 2, item: "cable", tags: [ "electronics", "supplies" ] }
我們想在字段 tags 數(shù)組,添加元素"camera", "electronics", "accessories",則更新語句如下:
db.inventory.update( { _id: 2 }, { $addToSet: { tags: { $each: [ "camera", "electronics", "accessories" ] } } } )
更新后的結(jié)果如下:
{ _id: 2, item: "cable", tags: [ "electronics", "supplies", "camera", "accessories" ]}
需要注意是,如果添加的元素是數(shù)組格式,則會(huì)將新添加的元素保留為數(shù)組(將會(huì)出現(xiàn)數(shù)組嵌套數(shù)組)
例如
{ _id: 1, letters: ["a", "b"] }
執(zhí)行的語句如下:
db.test.update( { _id: 1 }, { $addToSet: {letters: [ "c", "d" ] } } )
查詢結(jié)構(gòu)顯示為
{ _id: 1, letters: [ "a", "b", [ "c", "d" ] ] }
關(guān)于MongoDB中數(shù)組類型的操作示例就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。