Use Database method:
There is no create database command in MongoDB. Actually, MongoDB do not provide any command to create database.
It may be look like a weird concept, if you are from traditional SQL background where you need to create a database, table and insert values in the table manually.
Here, in MongoDB you don't need to create a database manually because MongoDB will create it automatically when you save the value into the defined collection at first time.
You also don't need to mention what you want to create, it will be automatically created at the time you save the value into the defined collection.
If there is no existing database, the following command is used to create a new database.
Syntax:
use DATABASE_NAME
If the database already exists, it will return the existing database.
Let' take an example to demonstrate how a database is created in MongoDB. In the following example, we are going to create a database "rookienerddb".
See this example
>use rookienerddb
To check the currently selected database, use the command db:
>db
To check the database list, use the command show dbs:
>show dbs
Here, your created database "rookienerddb" is not present in the list, insert at least one document into it to display database:
>db.movie.insert({"name":"rookienerd"})
>show dbs