You are on page 1of 7

DATABASE CONNECTIVITY

18141169 - Veerashri Tanaji Sonawale.


19143180 - Shabanam Aslam Mujawar.
Introduction
▪︎MongoDB, the most popular NoSQL database, is an open-source
document-oriented database.
▪︎The term ‘NoSQL’ means ‘non-relational’.
▪︎It means that MongoDB isn’t based on the table-like relational
database structure but provides an altogether different mechanism
for storage and retrieval of data.
▪︎This format of storage is called BSON ( similar to JSON format).
Feature of MongoDB
 Document Oriented
 Indexing
 Scalability
 Replication and High Availability
 Aggregation
COMPARISON WITH SQL
MongoDB Mysql
• MongoDB is an open-source database • MySQL is a popular open-source relational
developed by MongoDB, Inc. MongoDB database management system (RDBMS)
stores data in JSON-like documents that can that is developed, distributed and
vary in structure. It is a popular NoSQL supported by Oracle Corporation
database.

• In MongoDB, each individual records are • In MySQL, each individual records are
stored as ‘documents’. stored as ‘rows’ in a table.
Documents belonging to a particular class or • A ‘table’ is used to store rows (records) of
group as similar type.
• stored in a ‘collection’.
Example: collection of users.

• MongoDB was designed with high • MySQL concept does not allow efficient
availability and scalability in mind, and replication and sharding but in MySQL one
includes out-of-the-box replication and can access associated data using joins which
sharding. minimizes duplication.
IMPLEMENTION
CONCLUSION
THANK YOU

You might also like