Reading-Notes
code fellows 301
Read: 11 - Mongo and Mongoose
Reading
Mongo and Mongoose
- Structured data is good for a SQL database.
- MySQL is a real world example.
- Unstructured data is good for a NoSQL database data base.
- Mongo is a real world example.
- NoSQL is best for hierarchical data storage.
- SQL is best for scalability.
sql vs nosql
- SQL stands for structured query language.
- Tables of data tied together is used by a relation database.
- A structure does a relational database work with a table.
- A schema is a field of data in a table.
- A NoSQL database is an unstructured database.
- A NoSQL database lets you store data without structure.
- A mongo database contains documents.
- Mongo is more flexible.
- The disadvantage of a NoSQL database is data that is redundant.