MongoDB एक लोकप्रिय NoSQL document database है — यह डेटा को tables में rows के बजाय flexible, JSON-like documents (collections में) के रूप में संग्रहीत करता है। यह एक flexible schema, horizontal scalability, और एक developer-friendly model प्रदान करता है जो code में objects से स्वाभाविक रूप से मेल खाता है।
Documents और collections (vs tables और rows)
SQL (relational) MongoDB (document)
──────────────────────────────────────────
Database → Database
Table → Collection
Row → Document (a JSON-like object)
Column → Field
JOIN → embedding or $lookup
