今天來學習一個新的數據庫,叫作MongoDB數據庫,咱們先來了解一下MongoDB數據庫的概念,再一塊兒學習如何使用MongoDB數據庫吧~html
MongoDB是專爲可擴展性、高性能和高可用性而設計的數據庫,MongoDB的庫中由一個或多個collections組成,這裏的collection至關於關係型數據庫中的表;shell
MongoDB中的記錄是一個document文檔,它是由字段和值對組成的數據結構,MongoDB文檔相似於JSON對象,字段的值能夠包括其餘文檔,數組和文檔數組;數據庫
MongoDB支持的數據類型有:Int、Double, String, Object, Array, Binary data, Undefined, Boolean, Date, Null 等;數組
db.help() 查看庫級別的命令 db.mycoll.help() 查看collection級別的命令 sh.help() 查看發片的命令 rs.help() 查看副本集的命令 help admin 查看管理相關的命令 help connect 查看鏈接到數據庫的命令 help keys keys的相關命令 help misc misc things to know help mr 查看mapreduce相關的命令 show dbs 查看當前的數據庫 show collections 查看數據庫中全部的collections show users 當前的數據庫中有哪些用戶 show profile 顯示profile信息,顯示性能評估工具 show logs 顯示日誌名信息 show log [name] 顯示指定查看對應日誌的信息 use <db_name> 進入某庫,設定某庫爲當前庫 db.foo.find() 列出當前collection中全部的document db.foo.find( { a : 1 } ) 列出當前collection中a = 1的document it result of the last line evaluated; use to further iterate DBQuery.shellBatchSize = x 設置顯示的item的行數 exit 退出Mongo shell
db.students.insert()
:插入一條數據,默認會建立students表;數據結構
show collections
:顯示當前的表;函數
db.students.stats()
:顯示students表的數據信息;工具
db.students.find()
:查詢插入的各個字段;性能
db.students.count()
:查看students表中有多少個document;學習
db.students.remove({"name": "Angle"}) # 刪除表 db.students.drop() # 刪除當前數據庫 db.dropDatabase()
比較操做:fetch
$gt
:大於;db.students.find({age: {$gt: 10}}) age大於10
$gte
:大於等於;db.students.find({age: {$gte: 20}}) age大於等於20
$lt
:小於;db.students.find({age: {$lt: 30}}) age小於30
$lte
:小於等於;db.students.find({age: {$lte: 40}}) age小於等於40
$in
:在範圍內;db.students.find({age: {$in: [10, 20]}}) age在[10, 20]的document
$nin
:不在範圍內;db.students.find({age: {$nin: [30, 40]}}) age不在[30, 40]的document
邏輯運算:
$or
:或運算;db.students.find({$or: [{name: {$eq: "robby"}}, {age: {$nin: [40,50]}}]})
$and
:與運算;
$not
:非運算;
$nor:
取反運算;
$exists
:查詢存在某字段的document;如查詢存在name字段的document db.students.find({name: {$exists: true}})
$mod
:取摸;
$type
:返回指定字段的值類型爲指定類型的document;
$set
:更新,或插入字段的值;將name爲Tom的這個document的age字段的值改成20 db.students.update({name: "Tom"}, {$set: {age: 20}})
$unset
:刪除指定字段;刪除name字段爲Tom的document的age爲25的字段 db.students.update({name: "Tom"}, {$unset: {age: 25}}
$rename
:修改字段名;給name字段爲Tom的document增長一個字段sex且值爲男 db.students.update({name: "Tom"}, {$inc: {sex: "男"}})
# 建立用戶 db.createUser({user:"root",pwd:"123456", roles: [{ role: "root", db: "admin" }]}); # 刪除用戶 db.system.users.remove({user:"root"});
方法中的user
用於指定用戶名、pwd
用於設置密碼、roles
用於指定用戶的角色,能夠用一個空數組給新用戶設定空角色、db
用於指定用戶對哪一個數據庫具備管理員權限;
createUser()方法
爲數據庫建立新用戶,若是用戶已存在於數據庫中,則db.createUser()返回重複的用戶錯誤;
數據庫用戶角色:read
(容許用戶讀取指定數據庫)、readWrite
(容許用戶讀寫指定數據庫 );
數據庫管理角色:dbAdmin
(容許用戶在指定數據庫中執行管理函數)、dbOwner
、userAdmin
(容許用戶向system.users集合寫入);
集羣管理角色:clusterAdmin
(賦予用戶全部分片和複製集相關函數的管理權限)、clusterManager
、clusterMonitor
、hostManager
;
備份恢復角色:backup
、restore
;
全部數據庫角色:readAnyDatabase
、readWriteAnyDatabase
(賦予用戶全部數據庫的讀權限 )、userAdminAnyDatabase
(賦予用戶全部數據庫的讀寫權限 )、dbAdminAnyDatabase
(賦予用戶全部數據庫的dbAdmin權限);
超級用戶角色:root
(超級帳號,超級權限);
內部角色:__system
;
MongoDB中的索引與MySQL中的索引有相似的功能,將表中的字段添加索引,索引會將字段作排序,依次索引可以大大提升MongoDB的查詢能力
索引是特殊的數據結構,它以易於遍歷的形式存儲集合數據集的一小部分,索引存儲特定字段或字段集的值,按字段值排序;
索引條目的排序支持有效的等式匹配和基於範圍的查詢操做;
MongoDB可使用索引中的順序返回排序結果;
db.students.createIndex({name: 1}) 給name字段建立索引, 1爲指定按升序建立索引,若是你想按降序來建立索引指定爲-1便可 # 查看索引 db.students.getIndexes() # 查看是否使用到了索引(因爲MongoDB調優) db.students.find({"name": "Angle"}).explain() # winningPlan的stage爲fetch,非COLLSCAN(字段掃描) # 刪除索引 db.student.dropIndex("name_1") # 給name字段建立一個惟一鍵索引,那麼再給students表增長一條行document,且name與以前存在的document的name值相同,那麼就會報錯, 如:增長一條document db.students.createIndex({name: 1}, {unique: true}) db.students.insert({name: "Angle"}) 報錯的信息以下: WriteResult({ "nInserted" : 0, "writeError" : { "code" : 11000, "errmsg" : "insertDocument :: caused by :: 11000 E11000 duplicate key error index: test.students.$name_1 dup key: { : \"Angle\" }" } })