#1 What is NoSQL?
Unlike the structured tables with rows and columns characteristic of SQL databases, NoSQL databases are engineered to handle various forms of data—structured, semi-structured, or unstructured...
#2 Differences between SQL and NoSQL
While both NoSQLand SQL serve the purpose of storing and managing data, they differ significantly in their approach, structure, and use case...
#3 What is MongoDB?
MongoDB is a popular open-source, NoSQL database management system. It offers a range of tools and methods for accessing and interacting with data, catering to diverse preferences and use...
#4 Install and config MongoDB on Mac and Docker
Hands on tutorial for installing MongoDB on Docker and Mac. Learn how to run, check the connection and solve issues...
#5 Collections and Documents in MongoDB
In MongoDB, data is organised into collections and documents.A collection is a grouping of MongoDB documents. A document is a set of key-value pairs...
#6 Basic Commands of MongoDB Shell
You will learn the basic commands in MongoDB Shell such as display and switch databases, show collections and terminate a running command...
#7 Create and Insert Documents in MongoDB
You will learn how to create collection, create and insert documents with MongoDB shell and Compass...
#7.1 Demo: Create a collection and insert Documents
This is full demo of creating collection and adding multiple documents. Code is attached...
#8 Find Documents in MongoDB
The find() is a powerful tool that empowers us to execute diverse selections based on specific criteria...
- 1
- 2