reading-notes

code fellows reading notes

View on GitHub

Reading-Notes

code fellows 301

Read: 11 - Mongo and Mongoose

Reading

Mongo and Mongoose

  1. Structured data is good for a SQL database.
  2. MySQL is a real world example.
  3. Unstructured data is good for a NoSQL database data base.
  4. Mongo is a real world example.
  5. NoSQL is best for hierarchical data storage.
  6. SQL is best for scalability.

sql vs nosql

  1. SQL stands for structured query language.
  2. Tables of data tied together is used by a relation database.
  3. A structure does a relational database work with a table.
  4. A schema is a field of data in a table.
  5. A NoSQL database is an unstructured database.
  6. A NoSQL database lets you store data without structure.
  7. A mongo database contains documents.
  8. Mongo is more flexible.
  9. The disadvantage of a NoSQL database is data that is redundant.

Additional Resources