Mongodb 简明教程

MongoDB - Create Database

在本章中,我们将看到如何在 MongoDB 中创建一个数据库。

In this chapter, we will see how to create a database in MongoDB.

The use Command

MongoDB use DATABASE_NAME 用于创建数据库。如果数据库不存在,该命令将创建一个新数据库,否则将返回现有数据库。

MongoDB use DATABASE_NAME is used to create database. The command will create a new database if it doesn’t exist, otherwise it will return the existing database.

Syntax

@[s1] 语句的基本语法如下:

Basic syntax of use DATABASE statement is as follows −

use DATABASE_NAME

Example

如果您想使用名为 <mydb> 的数据库,则 use DATABASE 语句如下 −

If you want to use a database with name <mydb>, then use DATABASE statement would be as follows −

>use mydb
switched to db mydb

要检查您当前选择的数据库,请使用命令 db

To check your currently selected database, use the command db

>db
mydb

如果您想查看数据库列表,请使用命令 show dbs

If you want to check your databases list, use the command show dbs.

>show dbs
local     0.78125GB
test      0.23012GB

您创建的数据库 (mydb) 不存在列表中。要显示数据库,您需要向其中至少插入一个文档。

Your created database (mydb) is not present in list. To display database, you need to insert at least one document into it.

>db.movie.insert({"name":"tutorials point"})
>show dbs
local      0.78125GB
mydb       0.23012GB
test       0.23012GB

在 MongoDB 中,默认数据库为 test。如果您未创建任何数据库,则集合将存储在 test 数据库中。

In MongoDB default database is test. If you didn’t create any database, then collections will be stored in test database.