mongodbHow to create a database in MongoDB?
Creating a database in MongoDB is a simple process.
use <database_name>
This command will create a new database if it does not already exist, or connect to an existing database if it does exist.
use <database_name>
: This command creates a new database if it does not already exist, or connects to an existing database if it does exist.db.createCollection(<collection_name>)
: This command creates a new collection in the current database.db.collection.insert(<document>)
: This command inserts a document into the specified collection.
Helpful links
More of Mongodb
- How to use triggers in MongoDB?
- How to order query results in MongoDB?
- How to use MongoDB query with "or" condition?
- How to create a many to many relation in MongoDB?
- How to work with time series data in MongoDB?
- How to bind IP addresses for MongoDB server?
- How to use watch in MongoDB?
- How to insert new document into MongoDB?
- How to check the version of MongoDB?
- How to list MongoDB users?
See more codes...