#以下為基本的常用操作命令
#對資料庫操作
#檢視所有資料庫
show dbs
#刪除當前資料庫
db.dropdatabase()
#使用資料庫
use ***(***為資料庫名)
#對collection操作(即sql中的表名)
#檢視所有collection
show collections
#檢視collection元素個數
db.x.count() (x為collection名)
#crud對document操作(即對記錄進行操作)
#以下以collection:student_test為例
#插入乙個document
db.student_test.insert()
#刪除student_test中的所有document
db.student_test.remove()
#刪除student_test中的乙個滿足姓名為wang條件的document
db.student_test.remove()
#修改student_test中的將姓名為wang的age加1
db.student_test.update(
},}其中三個{}分別代表的含義為:查詢語句(query)、修改語句、是否修改多個document
#查詢#查詢student_test中所有document
db.student_test.find()
#查詢student_test中滿足姓名為wang的document
db.student_test.find()
MongoDB常用命令
切換 建立資料庫use yourdb 查詢所有資料庫show dbs 刪除當前使用資料庫db.dropdatabase 從指定主機上轉殖資料庫db.clonedatabase 127.0.0.1 從指定的機器複製資料庫資料到某個資料庫db.copydatabase mydb temp 127.0.0...
mongoDB常用命令
列出collection show.collections 檢視collection中所有資料 db.collection名稱.find 啟動mongo並設定資料儲存路徑 mongod dbpath 路徑 進入mongo執行介面 mongo預設是沒有使用者和密碼的 mongo 排序 gui工具是不能...
MongoDB常用命令
mongodb是檔案資料庫。是屬於nosql資料庫,也是採用key value結構儲存。與其他nosql比較,具有關係型資料庫的查詢。介於nosql和關係型資料庫之間的產品。redis mongodb oracle mongodb 適合儲存哪些經常變化的資訊項 適合儲存大量非核心資料資訊。庫 檢視所...