摘要:可選,拋出異常的級(jí)別。簡(jiǎn)單更新執(zhí)行上面的語(yǔ)句,如果集合中已經(jīng)存在一個(gè)為的文檔,則更新對(duì)應(yīng)字段否則插入。更新特定字段刪除特定字段注指定字段的值只需是任意合法值即可。刪除特定元素上面的語(yǔ)句表示刪除數(shù)組內(nèi)值等于的元素。
如果覺(jué)得 Mongodb 語(yǔ)句不太好理解,可以和 SQL 語(yǔ)句進(jìn)行對(duì)比,學(xué)起來(lái)要容易很多。
1. 查詢(xún)(find)
查詢(xún)所有結(jié)果
select * from article db.article.find()
指定返回哪些鍵
select title, author from article db.article.find({}, {"title": 1, "author": 1})
where條件
select * from article where title = "mongodb" db.article.find({"title": "mongodb"})
and條件
select * from article where title = "mongodb" and author = "god" db.article.find({"title": "mongodb", "author": "god"})
or條件
select * from article where title = "mongodb" or author = "god" db.article.find({"$or": [{"title": "mongodb"}, {"author": "god"}]})
比較條件
select * from article where read >= 100; db.article.find({"read": {"$gt": 100}})
> $gt(>)、$gte(>=)、$lt(<)、$lte(<=)
select * from article where read >= 100 and read <= 200 db.article.find({"read": {"$gte": 100, "lte": 200}})
in條件
select * from article where author in ("a", "b", "c") db.article.find({"author": {"$in": ["a", "b", "c"]}})
like
select * from article where title like "%mongodb%" db.article.find({"title": /mongodb/})
count
select count(*) from article db.article.count()
不等于
select * from article where author != "a" db.article.find({ "author": { "$ne": "a" }})
排序
升序:
select * from article where type = "mongodb" order by read desc db.article.find({"type": "mongodb"}).sort({"read": -1})
降序:
select * from article where type = "mongodb" order by read asc db.article.find({"type": "mongodb"}).sort({"read": 1})
findOne():除了只返回一個(gè)查詢(xún)結(jié)果外,使用方法與find()一樣。
2.創(chuàng)建(insert)
insert into article(title, author, content) values("mongodb", "tg", "haha") db.article.insert({"title": "mongodb", "author": "tg", "content": "haha"})
3.更新(update)
update()
語(yǔ)法:
db.collecion.update(query, update[, options] )
query : 必選,查詢(xún)條件,類(lèi)似find中的查詢(xún)條件。 update : 必選,update的對(duì)象和一些更新的操作符(如$,$inc...)等 options:可選,一些更新配置的對(duì)象。 upsert:可選,這個(gè)參數(shù)的意思是,如果不存在update的記錄,是否插入objNew,true為插入,默認(rèn)是false,不插入。 multi:可選,mongodb 默認(rèn)是false,只更新找到的第一條記錄,如果這個(gè)參數(shù)為true,就把按條件查出來(lái)多條記錄全部更新。 writeConcern:可選,拋出異常的級(jí)別。
簡(jiǎn)單更新:
update article set title = "mongodb" where read > 100 db.article.update({"read": {"$gt": 100}}, {"$set": { "title": "mongodb"}})
save()
db.article.save({_id: 123, title: "mongodb"})
執(zhí)行上面的語(yǔ)句,如果集合中已經(jīng)存在一個(gè)_id為123的文檔,則更新對(duì)應(yīng)字段;否則插入。
注:如果更新對(duì)象不存在_id,系統(tǒng)會(huì)自動(dòng)生成并作為新的文檔插入。
更新操作符
MongoDB提供一些強(qiáng)大的更新操作符。
更新特定字段($set):
update game set count = 10000 where _id = 123 db.game.update({"_id": 123}, { "$set": {"count": 10000}})
刪除特定字段($unset):
注:$unset指定字段的值只需是任意合法值即可。 遞增或遞減($inc)
db.game.update({"_id": 123}, { "$inc": {"count": 10}}) // 每次count都加10
> 注意:$inc對(duì)應(yīng)的字段必須是數(shù)字,而且遞增或遞減的值也必須是數(shù)字。
數(shù)組追加($push):
db.game.update({"_id": 123}, { "$push": {"score": 123}})
還可以一次追加多個(gè)元素:
db.game.update({"_id": 123}, {"$push": {"score": [12,123]}})
注:追加字段必須是數(shù)組。如果數(shù)組字段不存在,則自動(dòng)新增,然后追加。
一次追加多個(gè)元素($pushAll):
db.game.update({"_id": 123}, {"$pushAll": {"score": [12,123]}})
追加不重復(fù)元素($addToSet):
$addToSet類(lèi)似集合Set,只有當(dāng)這個(gè)值不在元素內(nèi)時(shí)才增加:
db.game.update({"_id": 123}, {"$addToSet": {"score": 123}})
刪除元素($pop):
db.game.update({"_id": 123}, {"$pop": {"score": 1}}) // 刪除最后一個(gè)元素 db.game.update({"_id": 123}, {"$pop": {"score": -1}}) // 刪除第一個(gè)元素
注:$pop每次只能刪除數(shù)組中的一個(gè)元素,1表示刪除最后一個(gè),-1表示刪除第一個(gè)。
刪除特定元素($pull):
db.game.update({"_id": 123}, {"$pull": {"score": 123}})
上面的語(yǔ)句表示刪除數(shù)組score內(nèi)值等于123的元素。
刪除多個(gè)特定元素($pullAll):
db.game.update({"_id": 123}, {"$pullAll": {score: [123,12]}})
上面的語(yǔ)句表示刪除數(shù)組內(nèi)值等于123或12的元素。 更新嵌套數(shù)組的值: 使用數(shù)組下標(biāo)(從0開(kāi)始): { address: [{place: "nanji", tel: 123}, {place: "dongbei", tel: 321}] }
db.game.update({"_id": 123}, {"$set": {"address.0.tel": 213}})
如果你不知道要更新數(shù)組哪項(xiàng),我們可以使用$操作符( $表示自身,也就是按查詢(xún)條件找出的數(shù)組里面的項(xiàng)自身,而且只會(huì)應(yīng)用找到的第一條數(shù)組項(xiàng)):
db.game.update({"address.place": "nanji"}, {"$set": {"address.$.tel": 123}})
在上面的語(yǔ)句中,$就是查詢(xún)條件{"address.place": "nanji"}的查詢(xún)結(jié)果,也就是{place: "nanji", tel: 123},所以{"address.$.tel": 123}也就是{"address.{place: "nanji", tel: 123}.tel": 123}
4. 刪除(remove)
刪除所有文檔:
delete from article db.article.remove()
刪除指定文檔:
delete from article where title = "mongodb" db.article.remove({title: "mongodb"})
更多參考:MongoDB常用語(yǔ)句
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/19406.html
摘要:可選,拋出異常的級(jí)別。簡(jiǎn)單更新執(zhí)行上面的語(yǔ)句,如果集合中已經(jīng)存在一個(gè)為的文檔,則更新對(duì)應(yīng)字段否則插入。更新特定字段刪除特定字段注指定字段的值只需是任意合法值即可。刪除特定元素上面的語(yǔ)句表示刪除數(shù)組內(nèi)值等于的元素。 如果覺(jué)得 Mongodb 語(yǔ)句不太好理解,可以和 SQL 語(yǔ)句進(jìn)行對(duì)比,學(xué)起來(lái)要容易很多。 1. 查詢(xún)(find) 查詢(xún)所有結(jié)果 select * from articl...
摘要:系列文章的安裝的命令操作的編程操作前面文章首先介紹了數(shù)據(jù)庫(kù)系統(tǒng)的安裝,接著介紹了的工具來(lái)操作數(shù)據(jù)庫(kù),掌握了命令行對(duì)數(shù)據(jù)庫(kù)的增刪改查,四個(gè)基本操作。現(xiàn)在來(lái)介紹,如何用編程語(yǔ)言來(lái)操作數(shù)據(jù)庫(kù)。 MongoDB 系列文章: MongoDB 的 yum 安裝 MongoDB 的命令操作 MongoDB 的編程操作 前面文章首先介紹了 MongoDB 數(shù)據(jù)庫(kù)系統(tǒng)的安裝,接著介紹了 MongoD...
摘要:數(shù)據(jù)庫(kù)學(xué)習(xí)線(xiàn)路圖語(yǔ)法教程教程簡(jiǎn)介語(yǔ)法選擇查詢(xún)子句與,或,非按關(guān)鍵字排序在表中插入空值更新刪除運(yùn)算符通配符運(yùn)算符運(yùn)算符通用數(shù)據(jù)類(lèi)型語(yǔ)句快速參考連接內(nèi)部連接左連接右連接完整外部連接自連接運(yùn)算符語(yǔ)句語(yǔ)句撤銷(xiāo)索引表以及數(shù)據(jù)庫(kù)語(yǔ)句語(yǔ)句語(yǔ)句字 數(shù)據(jù)庫(kù)學(xué)習(xí)線(xiàn)路圖 SQL 語(yǔ)法教程 SQL 教程 SQL 簡(jiǎn)介 SQL 語(yǔ)法 SQL Select選擇 SQL SELECT DISTINCT S...
閱讀 1648·2023-04-25 20:36
閱讀 2069·2021-09-02 15:11
閱讀 1209·2021-08-27 13:13
閱讀 2661·2019-08-30 15:52
閱讀 4710·2019-08-29 17:13
閱讀 1010·2019-08-29 11:09
閱讀 1499·2019-08-26 11:51
閱讀 847·2019-08-26 10:56