mongodb陣列和嵌入文件操作
阿新 • • 發佈:2019-02-17
概述
mongodb的操作中,有2種類型比較麻煩一點,一個是陣列型別, 一個是嵌入文件.
假定我們現有的Collection如下:
//這裡僅僅是個例子,不討論設計問題
//DB:user Collection: T_myuserinfo
{
"_id":1
"name":"myname1",
"age":15,
"friends":[2,3,5,8],
"relatives":[
{"_id":4, "name":"friend1", "age":10},
{"_id":7, "name":"friend2", "age" :11}
],
"son":{
"name":"myson",
"age":9,
"intrest":"cs"
},
"daugther":{
"name":"mydaugther",
"age":10,
"intrest":"read bookes"
}
}
陣列
插入值
//注意執行產生的是個內嵌的document,並不是陣列, 很容易混淆
db.T_myuserinfo.update({"_id":1},{$set:{"friends.0":4}});
//新增陣列欄位
db.T_myuserinfo.update({"_id":1},{$set:{"friends":[4]}});
//陣列操作功能還不是很強大
刪除值
//這是刪掉整個欄位
db.T_myuserinfo.update({"_id":1},{$unset:{"friends":""}});
//刪除陣列中的一個,參照修改操作,只是把值設定為null
查詢
//根據值來查
db.T_myuserinfo.find({"_id":1,"friends.1":3});
//根據size來查, 但是$size只能是等於,不能是大於或是小於(也就是不能與$ne等結合使用)
db.T _myuserinfo.find({"_id":1,"friends":{$size:4}});
修改
mongo官網中是這樣描述對陣列值進行$unset操作的:
If the field does not exist, then
unsetdoesnothing(i.e.nooperation).Whenusedwith to match an array element, $unset replaces the matching element with null rather than removing the matching element from the array. This behavior keeps consistent the array size and element positions.
對陣列中的值執行$unset只是把值設定為null, 保持陣列大小和值位置不變
db.T_myuserinfo.update({"_id":1},{$unset:{"friends.0":""}});
//等價於
db.T_myuserinfo.update({"_id":1},{$set:{"friends.0":null}});
建立索引
//這樣會為每個值建立索引
db.T_myuserinfo.createIndex({"relatives":1,"son":1});
//一個索引不允許有2個數組, 提示cannot index parallel array
db.T_myuserinfo.createIndex({"relatives":1,"friends":1});
嵌入文件
插入值
db.T_myuserinfo.update({"_id":1},{$set:{"son.age2":10}});
刪除值
db.T_myuserinfo.update({"_id":1},{$unset:{"son.name":""}});
查詢
db.T_myuserinfo.find({"_id":1,"son.age":9});
修改
db.T_myuserinfo.update({"_id":1},{$set:{"son.name":"myson2"}});
建立索引
//為嵌入文件單個欄位建立索引
db.T_myuserinfo.createIndex({"relatives":1,"son.age":1});