MongoDB 教學課程login
MongoDB 教學課程
作者:php.cn  更新時間:2022-04-21 17:49:03

MongoDB 建立資料庫


語法

MongoDB 建立資料庫的語法格式如下:

use DATABASE_NAME

如果資料庫不存在,則建立資料庫,否則切換到指定資料庫。

實例

以下實例我們建立了資料庫php:

> use php
switched to db php
> db
php
>

如果你想查看所有資料庫,可以使用show dbs 指令:

> show dbs
local  0.078GB
test   0.078GB
>

可以看到,我們剛剛建立的資料庫php 並不在資料庫的清單中, 要顯示它,我們需要向 php 資料庫插入一些資料。

> db.php.insert({"name":"php中文网"})
WriteResult({ "nInserted" : 1 })
> show dbs
local   0.078GB
php  0.078GB
test    0.078GB
>

MongoDB 中預設的資料庫為 test,如果你沒有建立新的資料庫,集合就會存放在 test 資料庫中。

#

PHP中文網