Explain the Mongodb in short.
Ask by Anubhav Sharma
Updated 31 Aug 2026
MongoDB is a NoSQL, document-oriented database that stores data in flexible JSON-like documents instead of traditional SQL tables and rows.
For example, instead of a SQL table:
MongoDB stores a document like:
Key concepts
MongoDB vs SQL
_idWhy use MongoDB?
MongoDB is popular when you need:
For example, an e-commerce product can have different attributes:
The nested
specificationscan be stored directly inside the document, which is one of MongoDB's major advantages.