MOngoDB 刪除語句
delete()刪除
- 刪除一個集合
db.collection.deleteOne()
- 刪除多個集合
db.collection.deletMany();
remove()刪除
- 刪除所有的name:李四的資料
db.student.remove({name:"李四"});
- 只刪除一條sex:男的資料 僅刪除一條
db.student.remove({sex:"男"},true);
- 刪除全部
db.student.remove({});
資料庫假刪除
有時候使用者刪除操作的時候,需求是這樣的,僅是隱藏這條資料,並不是真的從資料庫中刪除。 這時候就用到假刪除了, 比如這個是張三發的兩篇微博:
db.student.insert([
{name:"張三",content:"今天心情好",isDel:0},
{name:"張三",content:"今天心情一般",isDel:0},
]);
複製程式碼
使用者增加兩條資料,但只保留後一條,刪除前一條,這時候用到假刪除 ,在新增資料時加上一個欄位isDel:0
所以當使用者刪除資料時候 執行的不是remove方法而是update方法
db.student.update({"_id" : ObjectId("5bd6a46f1eb7a22fa07cb382")},{
$set:{
isDel:1
}
});
複製程式碼
當isDel:0
是表示使用者沒有刪除 為1是表示使用者已經刪除
所以在查詢的時候要篩選name和isDel條件即可
db.student.find({name:"張三",isDel:0});
複製程式碼
查詢到使用者沒有刪除的資料:
然後就可以實現假刪除了。
批量資料的操作和修改
- 向集合中插入10000個文件
var arr= [];
for(var i=0;i<10000;i++){
arr.push({counter:i});
}
db.demos.insert(arr);
db.demos.find();
複製程式碼
- 查詢demos中counter為666的文件
db.demos.find({counter:666});
- 查詢demos中counter小於66的文件
db.demos.find({counter:{$lt:666}});
- 查詢demos中counter大T666的文件
db.demos.find({counter:{$gt:666}});
- 查詢demos中counter大於66小於666的文件1120查吉demos集合中的前10餘資料
db.demos.find({counter:{$gt:66, $lt:666}});
- 查石demos集合中的第1字到20條資料
db.demos.find().limit(10);
- 查春demos集合中的第2 1條到30條資料 分頁功能 skip從多少條開始 limit每次查詢多少條
db.demos.find().skip(0).limit(10);//第一頁 從0條開始 每查詢10條
db.demos.find().skip(10).limit(10);//第二頁 從10條開始 每查詢10條
db.demos.find().skip(20).limit(10);//第三頁 從20條開始 每查詢10條
複製程式碼
集合中文件關係
- 一對一(one to one): 比如:人和身份證 老公和老婆
- 一對多(one to many): 比如:父母和孩子 使用者和物品
- 多對多(many to many): 比如:老師和學生
一對一
以內嵌文件的形式體現,
//一對一
db.aAndb.insert([
{name:"楊過",wife:{name:"小龍女",sex:"女"},sex:"男"},
{name:"楊過",wife:{name:"小龍女",sex:"女"},sex:"男"}
])
db.aAndb.find();
複製程式碼
一對多
通過內嵌文件的形式實現或者通過集合的形式實現
//一對多 比如 微博 和 微博評論
//新增微博
db.weibo.insert([
{weibo:"世界這麼大,我想去看看"},
{weibo:"我要做一名web開發者!!!"}
])
db.weibo.find();
複製程式碼
新增評論
db.comments.insert([
{
weibo_id: ObjectId("5bdd89e06a5e78f4cfc2b9c8"),
list:[
"那你有錢嗎",
"一個人嗎??去呢啊??",
"加油!!"
]
},
{
weibo_id: ObjectId("5bdd89e06a5e78f4cfc2b9c9"),
list:[
"那你要學習HTML",
"那還要你要學習css",
"加油!!"
]
}
]);
db.comments.find();
複製程式碼
查詢一對多
var weibo_id= db.weibo.findOne({"weibo" : "世界這麼大,我想去看看"})._id;
db.comments.find({weibo_id: weibo_id});
複製程式碼
多對多的關係
比如:學生和老師 可以通過多文件關聯,
//多對多 老師《------》學生
//插入老師集合
db.teachers.insert([
{
name:"語文老師",
teacher_id: 1,
student_id:[
1001,
1002,
1003
]
},
{
name:"數學老師",
teacher_id: 2,
student_id:[
1001,
1002,
1003
]
},
{
name:"英語老師",
teacher_id: 3,
student_id:[
1001,
1002,
1003
]
}
])
db.teachers.find();
//插入學生集合
db.students.insert([
{
name:"小明",
student_id: 1001,
teacher_id:[
1,
2,
3
]
},
{
name:"小紅",
student_id: 1002,
teacher_id:[
1,
2,
3
]
},
{
name:"小剛",
student_id: 1003,
teacher_id:[
1,
2,
3
]
}
])
db.students.find();
db.teachers.find();
複製程式碼
排序和索引
排序:
查詢文件時,預設是按照_id的值進行排序的(升序) sort() 可以用來指定文件的排序規則,sort() 內部需要傳遞一個物件來指定文件的排序規則 ,其中1表示升序 ,-1表示降序 limit skip sort 的順序可以任意改變 ,執行時會自動調整。 不希望它預設按照id排序 希望它按照工資來排序
//按照工資升序排列
db.section.find().sort({wages:1});
//優先按照工資升序排列 如果遇到相同的就在 按照id升序排列
db.section.find().sort({wages: 1},{_id: -1});
複製程式碼
索引:
展示欄位中 部分內容 或者是提取這個欄位內的部分內容 在查詢時 ,可以在第二個引數來設定查詢的結果投影
索引: find({ 查詢條件 }, { 檢索範圍(1顯示 0隱藏)}) 注意:
_id
如果不設定預設是1(顯示) 可手動隱藏
db.section.find({}, {name: 1});
//只顯示name和wages欄位
`db.section.find({}, {name: 1, _id: 0, wages: 1});`
複製程式碼