Mongo DB
Mongo DB
An intuitive data model that is fast and easy for developers to work with.
A flexible schema that allows for the data model to evolve as application needs change.
Because of these advantages, document databases are general-purpose databases that can be
used in a variety of use cases and industries.
Document databases are considered to be non-relational (or NoSQL) databases. Instead of storing
data in fixed rows and columns, document databases use flexible documents. Document
databases are the most popular alternative to tabular, relational databases. Learn more about
NoSQL databases.
What are the relationships between document databases and other databases?
Documents store data in field-value pairs. The values can be a variety of types and structures,
including strings, numbers, dates, arrays, or objects. Documents can be stored in formats like
JSON, BSON, and XML.
Below is a JSON document that stores information about a user named Tom.