Mongodb資料庫建立例項

2021-08-20 21:17:16 字數 707 閱讀 2712

啟動mongodb

mongodb啟動教程

建立資料庫

在mongo命令列視窗輸入 use dbname,按5執行。其中dbname是新建資料庫名。

輸入  show dbs顯示如下

local 0.000025gb

test 0.00002gb

shell

建立的資料庫(newdb)不在列表中。要顯示資料庫,需要至少插入乙個文件,

空的資料庫是不顯示出來的

>db.items.insert()

>show dbs

local 0.00005gb

test 0.00002gb

newdb 0.00002gb

shell

在 mongodb 中預設資料庫是:test。 如果您還沒有建立過任何資料庫,則集合/文件將儲存在test資料庫中。

MongoDB 建立資料庫

mongodb 建立資料庫的語法格式如下 use database name如果資料庫不存在,則建立資料庫,否則切換到指定資料庫。以下例項我們建立了資料庫 runoob use runoob switched to db runoob db runoob 如果你想檢視所有資料庫,可以使用 show ...

MongoDB 建立資料庫

mongodb 建立資料庫的語法格式如下 use database name如果資料庫不存在,則建立資料庫,否則切換到指定資料庫。以下例項我們建立了資料庫 runoob userunoob switched to db runoob dbrunoob 如果你想檢視所有資料庫,可以使用 show db...

MongoDB 建立資料庫

mongodb 建立資料庫的語法格式如下 use database name如果資料庫不存在,則建立資料庫,否則切換到指定資料庫。以下例項我們建立了資料庫 runoob userunoob switched to db runoob dbrunoob 如果你想檢視所有資料庫,可以使用show dbs...