MongoDB is a popular database that stores data JSON-like documents.
It offering high performance, scalability, and easy of use for modern application development.

Example:

{
  "username": "Tutorials on web",
  "email": "info@tutorialsonweb.com",
  "age": 25,
  "city": "India"
}

RDBMS Vs MongoDB

S. No.RDBMSMongoDB
1It Data Model is Tabular (Ex Rows and Columns) It Data Model is Document-Oriented (JSON-like)
2TableCollection
3It used SQL Query Language It used MongoDB Query Language (MQL)
4Relationships Established via Foreign KeysRelationships Established via Embedded Documents or References
5Joins SupportedEmbedded Documents
6Structured DataUnstructured or Semi-structured Data
7Primary KeyPrimary Key (key _id Default provided by MongoDB itself)
8MySQL, PostgreSQL, OracleMongoDB