How to install MongoDB 8.0 on Windows 10/11 [2024] | Install MongoDB & Mongo Shell | MongoDB Compass

Описание к видео How to install MongoDB 8.0 on Windows 10/11 [2024] | Install MongoDB & Mongo Shell | MongoDB Compass

In this video, I am going to show How to Install MongoDB 8.0.0 Community Edition on Windows 10/11. We will also see How to Install MongoDB Shell for running queries. Also, I have shown different commands of MongoDB.

MongoDB is one of the most used, open-source document databases, and NoSQL databases. MongoDB is developed by 10gen. It is written in c++ and it is a document-oriented database. It uses the BSON format.

Useful Commands in MongoDB:
1. MongoDB - Create Database
use cscorner
2. If you want to check your databases list, use the command
show dbs
Your created database is not present in list. To display database, you need to insert at least one document into it
3. MongoDB - Drop Database
db.dropDatabase()
4. MongoDB - Create Collection
db.createCollection(name)
db.createCollection("students")
5. MongoDB-Create Document.
db.students.insert({"rollno":1,"name":"sunita"})
If the collection doesn't exist in the database, then MongoDB will create this collection and then insert a document into it.
6. MongoDB -Show Collection
show collections
7. MongoDB - Drop Collection
db.students.drop()
8. MongoDB - Query Document
db.students.find()
9. To display the results in a formatted way, you can use the pretty method.
db.mycol.find().pretty()

This tutorial will provide you a good understanding of MongoDB concepts.

This tutorial is intended for students and new developers who want to learn MongoDB Database in easy-to-understand steps. This tutorial will provide you MongoDB concepts that will help you to get started with MongoDB quickly.
------------------------------------------------------------------------

✅Subscribe to my Channel to learn more about Computer Programming, computer tools, and technologies.
Thanks for watching my videos till the end, if you like my work please do Like, Comment, and Share!!
-----------------------------------------------------------------------
Channel Subscription:
🔗    / @cscornersunitarai  
🔗    / @codewithsunita  

Playlist available on my YouTube channel:👇🏻
Core Java Playlist: https://bit.ly/3Y6BSk7
Advanced Java Playlist: https://bit.ly/3Lu4E6K
Android Playlist: bit.ly/3WqeLQ3
Python Playlist: https://bit.ly/4bPpTKR
VS Code Tutorials Playlist: https://bit.ly/4bKVddF
Node JS Playlist: https://bit.ly/3y16vN0
MySQL Playlist: https://bit.ly/4bLQ6tU
Oracle Playlist: https://bit.ly/3zU337n
MongoDB Playlist: https://bit.ly/3zLRwqU
NoSQL Playlist: bit.ly/3LotOnc
Cloud Computing Playlist MU: bit.ly/3yctJzM
Computer Network Playlist MU: bit.ly/3Y6sAVe

LIKE | SHARE | SUBSCRIBE😍
------------------------------------------------------------------------
🎥 Tools I used for recording
https://www.amazon.in/shop/cscornersu...
------------------------------------------------------------------------
CONNECT WITH ME ON:
►Facebook -   / cscornersunitarai  
►Personal Facebook A/c -   / sunita.sharmarai  
►Instagram -   / cscornersunitarai  
►Telegram - https://t.me/cscorner
►LinkedIn -  / cscornersunitarai  

#MongoDB #installmongoDB #nosql #mongoDB #HowToInstallMongoDBOnWindows10 #MongoDBTutorial #MongoDBInstallationOnWindows #MongoDBInstallation #MongoDBTutorial #MongoDBTutorialForBeginners #MongoDBCourse
#cscornersunitarai

Комментарии

Информация по комментариям в разработке