mongodb | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 7

mongodb

is mongodb a programming language, can mongodb replace sql,can mongodb connect with other language except js.

22nd Sep 2020, 11:38 AM
Dove
Dove - avatar
8 Answers
+ 16
What Is MongoDB? MongoDB is a document-oriented database. This means that it doesn’t use tables and rows to store its data, but instead collections of JSON-like documents. These documents support embedded fields, so related data can be stored within them. MongoDB is also a schema-less database, so we don’t need to specify the number or type of columns before inserting our data. Here’s an example of what a MongoDB document might look like: { _id: ObjectId(3da252d3902a), type: "Tutorial", title: "An Introduction to MongoDB", author: "Manjunath M", tags: [ "mongodb", "compass", "crud" ], categories: [ { name: "javascript", description: "Tutorialss on client-side and server-side JavaScript programming" }, { name: "databases", description: "Tutorialss on different kinds of databases and their management" }, ], content: "MongoDB is a cross-platform, open-source, NoSQL database..." } #Reference sitepoint
22nd Sep 2020, 11:49 AM
JOY
JOY - avatar
+ 10
is mongodb a programming language? NO . can mongodb replace sql? NO for now, or forever . can mongodb connect with other language except js? YES, eg: Typescript . . hope it answer
22nd Sep 2020, 11:47 AM
Amethyst Animion
Amethyst Animion - avatar
+ 9
Why is using MongoDB better than using MySQL? Organizations of all sizes are adopting MongoDB, especially as a cloud database, because it enables them to build applications faster, handle highly diverse data types, and manage applications more efficiently at scale. Development is simplified as MongoDB documents map naturally to modern, object-oriented programming languages. Using MongoDB removes the complex object-relational mapping (ORM) layer that translates objects in code to relational tables. MongoDB’s flexible data model also means that your database schema can evolve with business requirements. MySQL's rigid relational structure adds overhead to applications and slows developers down as they must adapt objects in code to a relational structure. MongoDB can also be scaled within and across multiple distributed data centers, providing new levels of availability and scalability previously unachievable with relational databases like MySQL. As your deployments grow in terms of data volume and through
22nd Sep 2020, 11:50 AM
JOY
JOY - avatar
+ 8
What are the main differences between MongoDB and MySQL? MySQL is a relational database management system (RDBMS) from the Oracle Corporation. Like other relational systems, MySQL stores data in tables and uses structured query language (SQL) for database access. When MySQL developers need to access data in an application, they merge data from multiple tables together in a process called a join. In MySQL, you predefine your database schema and set up rules to govern the relationships between fields in your tables. MongoDB is a NoSQL database that stores data as JSON-like documents. Documents store related information together and use the MongoDB query language (MQL) for access. Fields can vary from document to document - there is no need to declare the structure of documents to the system, as documents are self-describing. Optionally, schema validation can be used to enforce data governance controls over each collection. Why is using MongoDB better than using MySQL? Organizations of all sizes are adop
22nd Sep 2020, 11:50 AM
JOY
JOY - avatar
+ 7
Last two references are from mongodb.com
22nd Sep 2020, 11:51 AM
JOY
JOY - avatar
+ 6
♠👑 ℍⓄlʸᵇ𝕆𝒾 👍♦ Most welcome. Glad to help
22nd Sep 2020, 11:57 AM
JOY
JOY - avatar
+ 5
JOY thats amazing thanks
22nd Sep 2020, 11:57 AM
Dove
Dove - avatar
+ 4
but sql is a programming language,mongodb can be use to create datsbase how?explain?
22nd Sep 2020, 11:50 AM
Dove
Dove - avatar