Create Database in MongoDB


Using the ‘Use’ keyword we can create a database in MongoDB, for example, see the following command. 

>use myMongoDB

Command will create a new database if “myMongoDB” does not exist otherwise it will return the existing database.
To check your currently selected database use the command DB

>db
myMongoDB

If you want to check your database list, then use the command "show dbs".

>show dbs
Local 0.78987GB
myMongoDB 0.98978GB

1 comment:

Please do not enter any spam link in the comment box.

Related Posts

What is the Use of isNaN Function in JavaScript? A Comprehensive Explanation for Effective Input Validation

In the world of JavaScript, input validation is a critical aspect of ensuring that user-provided data is processed correctly. One indispensa...