filmov
tv
MongoDB Commands Tutorial - insert, update, find and remove records/documents.

Показать описание
This video tutorial shows how to use different commands to insert, update, find and remove documents in MongoDB.
MongoDB Commnds
--List out all available dbs
$ show dbs;
--Create or connect to a DB
$ use dbName;
$ use empDB;
--Create a Collection
--List out all collections in the selected db (empDB)
$ show collections;
--INSERT a document / record into the collection (employee)
--display(FIND) all the documents in the collection (employee)
--display in neat manner
--UPDATE a value in a particular document
--ADD NEW COLUMN in a document
--INCREMENT a column value
--REMOVE A COLUMN in a document
--FIND a document if not found INSERT the document
--FIND documents based on the given condition
--get COUNT of the find documents
--FIND employees whose salary is LESS THAN 20000
--FIND employees whose salary is GREATER THAN 15000}
--SORT the selected documents ASCENDING ORDER
--SORT the selected documents DESCENDING ORDER
--set LIMIT to selected documents
--DELETE A DATABASE
MongoDB Commnds
--List out all available dbs
$ show dbs;
--Create or connect to a DB
$ use dbName;
$ use empDB;
--Create a Collection
--List out all collections in the selected db (empDB)
$ show collections;
--INSERT a document / record into the collection (employee)
--display(FIND) all the documents in the collection (employee)
--display in neat manner
--UPDATE a value in a particular document
--ADD NEW COLUMN in a document
--INCREMENT a column value
--REMOVE A COLUMN in a document
--FIND a document if not found INSERT the document
--FIND documents based on the given condition
--get COUNT of the find documents
--FIND employees whose salary is LESS THAN 20000
--FIND employees whose salary is GREATER THAN 15000}
--SORT the selected documents ASCENDING ORDER
--SORT the selected documents DESCENDING ORDER
--set LIMIT to selected documents
--DELETE A DATABASE
Creation & Insertion in MongoDB
MongoDB Tutorial 7 - MongoDB Insert Document
MongoDB Tutorial - 5 - Commands
MongoDB Commands Tutorial - insert, update, find and remove records/documents.
MongoDB Basics | Tutorial 6: CRUD – Create (insert(), insertOne(), insertMany())
MongoDB Tutorial for Beginners 5 - Insert Documents
MongoDB Tutorial for Beginners - Inserting documents in MongoDB -Part -7
How to Insert Document in Collection in MongoDB ( Insert vs InsertOne vs InsertMany in MongoDB )
AMA with MongoDB's PHP Engineering team
MongoDB Tutorial for Beginners - 5 - Insert Documents
MongoDB Tutorial For Beginners - #4. Understanding Collections and Inserting Data in MongoDB [2018]
How to insert documents in MongoDB | MongoDB Tutorial for Beginners
MongoDB in 100 Seconds
Manually add Data or document in Mongodb Collection | Insert data in mongodb compass table
Mongo shell | MongoDB compass | MongoDB commands | MongoDB Tutorials
How to Create and Insert Data in MongoDB
MongoDB Tutorial for Beginners - 3 - Creating Databases and Inserting Data
Creating our Database in MongoDB. Inserting and Finding Documents.
Inserting Documents | MongoDB | Tutorial 5
MongoDB Crash Course
MongoDB Tutorial #2 : Insert data(document) in collection
#7 Create a document in MongoDB | insert data into the collection MongoDB command line | insertOne()
MongoDB Tutorial 2 - Insert & Read documents
Insert data into MongoDB using Node JS cmd
Комментарии