MongoDB CRUD Operations
CRUD operations create, read, update, and deletedocuments.
Create Operations
Create or insert operations add new documents to a collection. If thecollection does not currently exist, insert operations will create thecollection.
MongoDB provides the following methods to insert documents into acollection:
db.collection.insertOne()
New in version 3.2db.collection.insertMany()
New in version 3.2
In MongoDB, insert operations target a single collection. Allwrite operations in MongoDB are atomic on the level of a singledocument.
For examples, see Insert Documents.
Read Operations
Read operations retrieves documents from acollection; i.e. queries a collection fordocuments. MongoDB provides the following methods to read documents froma collection:
You can specify query filters or criteria that identify the documents to return.
For examples, see:
Update Operations
Update operations modify existing documents in a collection. MongoDBprovides the following methods to update documents of a collection:
db.collection.updateOne()
New in version 3.2db.collection.updateMany()
New in version 3.2db.collection.replaceOne()
New in version 3.2
In MongoDB, update operations target a single collection. All writeoperations in MongoDB are atomic on the level of a single document.
You can specify criteria, or filters, that identify the documents toupdate. These filters use the samesyntax as read operations.
For examples, see Update Documents.
Delete Operations
Delete operations remove documents from a collection. MongoDB providesthe following methods to delete documents of a collection:
db.collection.deleteOne()
New in version 3.2db.collection.deleteMany()
New in version 3.2
In MongoDB, delete operations target a single collection. Allwrite operations in MongoDB are atomic on the level of a single document.
You can specify criteria, or filters, that identify the documents toremove. These filters use the samesyntax as read operations.
For examples, see Delete Documents.
Bulk Write
MongoDB provides the ability to perform write operations in bulk. Fordetails, see Bulk Write Operations.