What is MongoDB & How to Install and use it
MongoDB is a NoSQL database that stores data in a flexible, JSON-like format called BSON (Binary JSON).
Unlike traditional relational databases like MySQL or PostgreSQL, which use tables and rows,
MongoDB uses collections and documents.
Key Concepts
|
Concept |
Description |
|
Database |
A container for collections. |
|
Collection |
A group of documents, similar to a
table in SQL. |
|
Document |
A single record in a collection,
stored as a JSON-like object. |
Example of a document:
Comments
Post a Comment