Skip to content

Latest commit

 

History

History

0x01-NoSQL

img

mongoMeme

About

NoSQL databases are non-relational databases that provide flexible and scalable solutions for managing and storing large volumes of unstructured, semi-structured, and structured data. Unlike traditional relational databases, NoSQL databases do not enforce a fixed schema and provide a more dynamic and flexible data model. In this project, we will interact with one of the most common NoSQL database out here that alot of developers like to use, MongoDB

Resources

Read or Watch:

  1. NoSQL databases explained
  2. What is NoSQL?
  3. MongoDB with Python Crash Course - A tutorial for beginners
  4. MongoDB tuturial 2: Insert, Delete, Update, Query
  5. Aggregation
  6. Introduction to MongoDB and Python
  7. MongoShell methods
  8. The mongo shell

Learning objectives

By the end of this project, you are expected to be able to explain to anyone without the help of Google:

  • What NoSQL means
  • What is difference between SQL and NoSQL
  • What is ACID
  • What is a document storage
  • What are NoSQL types
  • What are benefits of a NoSQL database
  • How to query information from a NoSQL database
  • How to insert/update/delete information from a NoSQL database
  • How to use MongoDB