MongoDB is an open-source document-oriented database. Document-oriented means it stores the data in a file. MongoDB comes under the category of NoSql database. It stores the data in BSON (Binary JSON) format. It can be accessed through javascript notation and comes with their own shell.
Database – It is a set of collections.
If you do a little research to find out how to create a database in MongoDB, you’ll find documentation for the function “db.createCollection()”. This is actually how you create a database, but it’s referred to as a collection in NoSQL.
To create a MongoDB database:
-“Use” the database.
-Create a collection in the database.
-Verify that you got what you wanted.
Learn MongoDB by Tekslate - Fastest growing sector in the industry.Explore
Online MongoDB Training and course is aligned with industry needs & developed by
industry veterans.Tekslate will turn you into MongoDB Expert.
Assume you have installed MongoDB successfully in your system. Go to the terminal (ctrl + Alt + T) and type mongo and press enter. It opens up a mongo shell.
xyz@xyz-300E4c-300E5c-300E7c:$ mongo MongoDB shell version: 2.4.6 Connecting to: test >
To check all the database
1 | # show dbs |
Let’s insert some records in our emp collection. We have not created any database yet but MongoDB creates when the record is inserted.
dp.emp.insert({firstname: 'Raj",
lastname: 'kumar'
dob: '09/07/1989',
designation:'SE';
nationality:'India',
gender 'M'
});
dp.emp.insert({
firstname: 'Robin',
lastname: 'yadav',
dob: '10/08/1987',
designation:'Manager',
nationality:'India',
gender 'M'
});
dp.emp.insert({
firstname: 'Tang',
lastname: 'sharma',
dob: '12/01/1986',
designation:'TL',
nationality:'India',
gender 'M'
});
dp.emp.insert({
firstname: 'parul',
lastname: 'iti',
dob: '13/08/1983',
designation:'Emp',
nationality:'India',
gender 'F'
});
The value is inserted successfully, you can check through find() command.

For indepth understanding click on