成人国产在线小视频_日韩寡妇人妻调教在线播放_色成人www永久在线观看_2018国产精品久久_亚洲欧美高清在线30p_亚洲少妇综合一区_黄色在线播放国产_亚洲另类技巧小说校园_国产主播xx日韩_a级毛片在线免费

資訊專欄INFORMATION COLUMN

mongodb常用命令操作

goji / 3210人閱讀

摘要:如已存在數(shù)據(jù),再次進(jìn)行插入操作時(shí),會報(bào)主鍵重復(fù)的錯(cuò)誤提示會把修改為。使用函數(shù),參數(shù)指定查詢條件,不指定條件則查詢?nèi)坑涗?。年齡為或者名字為,年齡在中,。

基本命令

顯示當(dāng)前數(shù)據(jù)庫服務(wù)器上的數(shù)據(jù)庫
show dbs

切換到指定數(shù)據(jù)庫的上下文,可以在此上下文中管理testdb數(shù)據(jù)庫以及其中的集合等
use testdb

顯示數(shù)據(jù)庫中所有的集合(collection)
show collections

查看數(shù)據(jù)庫服務(wù)器的狀態(tài)
db.serverStatus()

查詢指定數(shù)據(jù)庫統(tǒng)計(jì)信息
use fragment

db.stats()

基本DDL和DML

創(chuàng)建數(shù)據(jù)庫。
直接通過use dbname來切換到這個(gè)數(shù)據(jù)庫上下文下面,系統(tǒng)會自動(dòng)延遲創(chuàng)建該數(shù)據(jù)庫。

use testdb
show dbs (此刻可能testdb數(shù)據(jù)庫并沒有被創(chuàng)建)
db (顯示當(dāng)前使用的數(shù)據(jù)庫,結(jié)果位testdb)
db.storeCollection.save({"version":"3.5", "segment":"e3ol6"})  (插入一條數(shù)據(jù))
show dbs (此刻能看到testdb被創(chuàng)建)

刪除數(shù)據(jù)庫。
直接使用db.dropDatabase()即可刪除數(shù)據(jù)庫。

創(chuàng)建集合。

db.createCollection("replicationColletion", {"capped":true, "size":10240, "max":17855200})
show collections 

刪除集合。

db.mycoll.drop()

增加紀(jì)錄。

兩種插入方法

db.storeCollection.save({"version":"3.5", "segment":"e3ol6"})
db.storeCollection.insert({"version":"3.5", "segment":"e3ol6"})

若新增的數(shù)據(jù)中存在主鍵 ,insert() 會提示錯(cuò)誤,而save() 則更改原來的內(nèi)容為新內(nèi)容。
如:
已存在數(shù)據(jù): {_id : 1, " name " : " n1 " },再次進(jìn)行插入操作時(shí),
insert({_id : 1, " name " : " n2 " }) 會報(bào)主鍵重復(fù)的錯(cuò)誤提示
save({ _id : 1, " name " : " n2 " }) 會把 n1 修改為 n2 。
相同點(diǎn):
若新增的數(shù)據(jù)中沒有主鍵時(shí),會增加一條記錄。
已存在數(shù)據(jù): { _id : 1, " name " : " n1 " },再次進(jìn)行插入操作時(shí),
insert({ " name " : " n2 " }) 插入的數(shù)據(jù)因?yàn)闆]有主鍵,所以會增加一條數(shù)據(jù)
save({ " name " : " n2 " }) 增加一條數(shù)據(jù)。

循環(huán)插入

for(var i = 1; i < 100; i++) {

   db.testCollection.insert({
       age : i % 7,
       name : "name" + Math.round((10 + 20 * Math.random())),
       password : "123456"
   })

}

更新記錄。

db.testCollection.update({age: 6}, {$inc: {age: 1}}) //選擇age為6的一條記錄,使他的age加1.
db.testCollection.update({age: 7}, {$set: {password : "456789"}}) //選擇age為7的一條記錄,設(shè)置password為456789

//如果條件不匹配一個(gè)記錄,希望能往數(shù)據(jù)庫里新增一個(gè),設(shè)置update函數(shù)第三個(gè)參數(shù)為true就可以。這里age為8條件匹配不到數(shù)據(jù)。
db.testCollection.update({age: 8}, {$set: {password : "888888"}}, true)


//若要批量更新,設(shè)置update函數(shù)第四個(gè)參數(shù)為true就可以了。
db.testCollection.update({age: 7}, {$set: {password : "456789"}}, true, true)

更新version為3.5的記錄的segment值。

查詢一條紀(jì)錄。

db.storeCollection.findOne({"version":"3.5"})

參數(shù)為查詢條件,可選,系統(tǒng)會隨機(jī)查詢獲取到滿足條件的一條記錄(如果存在查詢結(jié)果數(shù)量大于等于1)。

查詢多條記錄。

db.storeCollection.find()

使用find()函數(shù),參數(shù)指定查詢條件,不指定條件則查詢?nèi)坑涗洝?br>條件查詢包括4種方法:

// 1. $gt(>)、$gte(>=)、$lt(<)、$lt(<=)、$ne(!=)、沒有特殊關(guān)鍵字(=)

db.testCollection.find({age: {$$gt:5}}).count() //14。note:去掉gt前面一個(gè)$符號,$符號會被解析,wiznote搞的鬼?。?!

db.testCollection.find({age: {$gte:5}}).count() //28

db.testCollection.find({age: {$lt:5}}).count() //71

db.testCollection.find({age: {$lte:5}}).count() //85

db.testCollection.find({age: {$ne:5}}).count() //85

db.testCollection.find({age: 5}).count() //14

// 2. 沒有特殊關(guān)鍵字(&&)、 $or(||)、$in()、$nin()

db.testCollection.find({age: {$$gt: 5}, password:"123456"}).count() //年齡大于5且密碼為123456, 14。

//年齡為5或者名字為name26,18
db.testCollection.find({$or:[{age: 5},  {name:"name26"}]}).count() 

db.testCollection.find({age: {$in: [1,5, 6]}}).count() //年齡在1、5、6中,43。

db.testCollection.find({age: {$nin: [1,5, 6]}}).count() //年齡不在1、5、6中,56

// 3. 正則表達(dá)式匹配,威力強(qiáng)勁
db.testCollection.find({name: /^name1d/}).count() //名字以name1開頭的,從name10到name19的記錄。41

//4. where語句,大招來了
db.testCollection.find({$where:function(){return this.age > 5} }).count()

刪除紀(jì)錄

db.storeCollection.findOne({"version": "3.5"})   (刪除version為3.5的紀(jì)錄)
db.storeCollection.findOne({"version": "3.5"})   (返回結(jié)果為空)

統(tǒng)計(jì)集合記錄數(shù)

db.storeCollection.count()

查詢并統(tǒng)計(jì)結(jié)果記錄數(shù)

db.storeCollection.find({"segment":"e30l8"}).count()
參考鏈接

> csdn
cnblogs

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://systransis.cn/yun/18836.html

相關(guān)文章

  • MongoDBmongodb安裝及常用操作命令

    摘要:二中常用命令顯示數(shù)據(jù)庫列表顯示當(dāng)前數(shù)據(jù)庫中的集合類似關(guān)系數(shù)據(jù)庫中的表顯示用戶切換當(dāng)前數(shù)據(jù)庫,如果數(shù)據(jù)庫不存在則創(chuàng)建數(shù)據(jù)庫。注意操作同時(shí)可以創(chuàng)建數(shù)據(jù)庫,如果一個(gè)不存在的數(shù)據(jù)庫名,則執(zhí)行后,會創(chuàng)建對應(yīng)數(shù)據(jù)庫。如果指定字段,則會更新該的數(shù)據(jù)。 ..............................................................................

    fish 評論0 收藏0
  • mongodb 備份、還原、導(dǎo)入、導(dǎo)出簡單操作

    摘要:還原導(dǎo)出的表數(shù)據(jù)部分字段的表數(shù)據(jù)導(dǎo)入還原文件 一、 mongodump備份數(shù)據(jù)庫 1.一般常用的備份命令格式 mongodump -h IP --port 端口 -u 用戶名 -p 密碼 -d 數(shù)據(jù)庫 -o 文件存在路徑 如果想導(dǎo)出所有數(shù)據(jù)庫,可以去掉-d 2.導(dǎo)出數(shù)據(jù)庫[root@local ~]# mongodump -h 127.0.0.1 --port 30216 -d t...

    KitorinZero 評論0 收藏0
  • 一篇文章入門MongoDB

    摘要:既是數(shù)據(jù)庫,又是內(nèi)存數(shù)據(jù)庫,而且它是現(xiàn)在最強(qiáng)大最流行的數(shù)據(jù)庫。所以相對于的真內(nèi)存數(shù)據(jù)庫而言,只是將大部分的操作數(shù)據(jù)存在內(nèi)存中。 MongoDB既是NoSQL數(shù)據(jù)庫,又是內(nèi)存數(shù)據(jù)庫,而且它是現(xiàn)在最強(qiáng)大、最流行的NoSQL數(shù)據(jù)庫。區(qū)別與別的NoSQL數(shù)據(jù)庫,MongoDB主要是基于Documents文檔(即一條JSON數(shù)據(jù))的。 MongoDB的特點(diǎn): NoSQL數(shù)據(jù)庫 內(nèi)存數(shù)據(jù)庫 存儲...

    felix0913 評論0 收藏0
  • mongodb常用命令

    摘要:是的簡稱,是一個(gè)文檔對象的二進(jìn)制編碼格式。有以下三個(gè)特點(diǎn)輕量級跨平臺效率高命名空間存儲對象到這一系列的數(shù)據(jù)庫名和名被稱為一個(gè)命名空間。 mongodb由C++寫就,其名字來自humongous這個(gè)單詞的中間部分,從名字可見其野心所在就是海量數(shù)據(jù)的處理。關(guān)于它的一個(gè)最簡潔描述為:scalable, high-performance, open source, schema-free, d...

    DTeam 評論0 收藏0

發(fā)表評論

0條評論

最新活動(dòng)
閱讀需要支付1元查看
<