0% found this document useful (0 votes)
54 views7 pages

DATABASE CONNECTIVITY Adms

MongoDB is a popular open-source document-oriented database that stores data in JSON-like documents rather than tables. It is non-relational and scales well. Key features of MongoDB include its document-oriented structure, indexing, scalability, replication for high availability, and data aggregation. It differs from MySQL which is an open-source relational database that stores data in rows within tables and focuses on efficient joins between tables rather than embedded documents.

Uploaded by

Pallavi Bharti
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
54 views7 pages

DATABASE CONNECTIVITY Adms

MongoDB is a popular open-source document-oriented database that stores data in JSON-like documents rather than tables. It is non-relational and scales well. Key features of MongoDB include its document-oriented structure, indexing, scalability, replication for high availability, and data aggregation. It differs from MySQL which is an open-source relational database that stores data in rows within tables and focuses on efficient joins between tables rather than embedded documents.

Uploaded by

Pallavi Bharti
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 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