MongoDB 建立和刪除資料庫及集合

2021-10-10 15:20:47 字數 1473 閱讀 7031

備註:

mongodb 4.2 版本

-- 檢視當前所有的資料庫

show dbs

-- 建立資料庫 (只有建立了文件資料庫才會儲存)

use zqs

-- 建立test1文件

db.test1.insert(

)

測試記錄:

> show dbs

admin 0.000gb

config 0.000gb

local 0.000gb

test 0.000gb

> use zqs

switched to db zqs

> db.test1.insert(

... )

writeresult()

>

>

> db

zqs> show dbs

admin 0.000gb

config 0.000gb

local 0.000gb

test 0.000gb

zqs 0.000gb

> show collections

test1

>

use zqs

db.dropdatabase()

測試記錄:

> use zqs

switched to db zqs

> db.dropdatabase()

> show dbs

admin 0.000gb

config 0.000gb

local 0.000gb

test 0.000gb

語法:

db.createcollection(name, options)
use zqs;

-- 建立集合t1

db.createcollection("t1")

測試記錄:

> use zqs;

switched to db zqs

> db.createcollection("t1")

> show collections

t1test1

> show tables;

t1test1

>

語法:

db.collection.drop()
測試記錄

> use zqs;

switched to db zqs

> db.t1.drop()

true

> show tables;

test1

>

MongoDB 刪除資料庫

mongodb 刪除資料庫的語法格式如下 db dropdatabase 刪除當前資料庫,預設為 test,你可以使用 db 命令檢視當前資料庫名。以下例項我們刪除了資料庫 runoob。首先,檢視所有資料庫 show dbs local 0.078gb runoob 0.078gb test 0....

MongoDB 刪除資料庫

本章介紹如何使用mongodb命令刪除資料庫。mongodbdb.dropdatabase 命令用於刪除資料庫。dropdatabase 命令的基本語法如下 db.dropdatabase 這將刪除當前資料庫。如果沒有選擇任何資料庫,那麼它將刪除預設的 test 資料庫。首先,使用命令show db...

MongoDB 刪除資料庫

mongodb 刪除資料庫的語法格式如下 db.dropdatabase 刪除當前資料庫,預設為 test,你可以使用 db 命令檢視當前資料庫名。以下例項我們刪除了資料庫 runoob。首先,檢視所有資料庫 show dbs admin 0.000gb config 0.000gb local 0...