Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
Sichere ProgrammierungAutomating Bug Reports with Tally and Make(22.09.2026 um 22:44 Uhr)
Sichere ProgrammierungHTB - Forest(22.09.2026 um 22:49 Uhr)
Sichere ProgrammierungYour Ports Are Lying About Your Business(22.09.2026 um 22:52 Uhr)
Sichere ProgrammierungOLTP vs. OLAP: Understanding the Foundation of Modern Data Systems(22.09.2026 um 22:54 Uhr)
Sichere ProgrammierungYour AI Meeting Assistant Is Taking Notes. Who Is Doing the Work?(22.09.2026 um 22:57 Uhr)
Sichere ProgrammierungDebuggear se va a acabar(22.09.2026 um 23:03 Uhr)
Sichere ProgrammierungAutomating Bug Reports with Tally and Make(22.09.2026 um 22:44 Uhr)
Sichere ProgrammierungHTB - Forest(22.09.2026 um 22:49 Uhr)
Sichere ProgrammierungYour Ports Are Lying About Your Business(22.09.2026 um 22:52 Uhr)
Sichere ProgrammierungOLTP vs. OLAP: Understanding the Foundation of Modern Data Systems(22.09.2026 um 22:54 Uhr)
Sichere ProgrammierungYour AI Meeting Assistant Is Taking Notes. Who Is Doing the Work?(22.09.2026 um 22:57 Uhr)
Sichere ProgrammierungDebuggear se va a acabar(22.09.2026 um 23:03 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

Create, Read, Update, Delete (CRUD) | MongoDB Tutorial 2025

Table of Contents Introduction to MongoDB Installation & Database Creation CRUD Operations (You are here). Embedded Documents and Arrays Introduction to CRUD Operations in MongoDB CRUD (Create, Read, Update, Delete)…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!




Table of Contents




  1. Introduction to MongoDB

  2. Installation & Database Creation


  3. CRUD Operations (You are here).

  4. Embedded Documents and Arrays









Introduction to CRUD Operations in MongoDB



CRUD (Create, Read, Update, Delete) operations are the fundamental building blocks for interacting with a MongoDB database. MongoDB provides various methods to insert, query, update, and delete documents within collections.


























































Operation Method Description
Create insertOne(data, options) Inserts a single document into a collection.
insertMany(data, options) Inserts multiple documents into a collection.
Read find(filter, options) Retrieves documents matching a filter.
findMany(filter, options) Retrieves multiple documents based on criteria.
Update updateOne(filter, data, options) Updates a single document that matches the filter.
updateMany(filter, data, options) Updates multiple documents that match the filter.
replaceOne(filter, replacement, options) Replaces a single document entirely.
Delete deleteOne(filter, options) Deletes a single document matching the filter.
deleteMany(filter, options) Deletes multiple documents that match the filter.





I. CREATE Operations in MongoDB



Note: Since we already have a database called flights from our previous lesson, these examples will be inserted into this database.



If the specified collection doesn’t exist, MongoDB will automatically create it when inserting documents.



To add documents to a collection, MongoDB offers the following methods:




db.collection.insertOne()
db.collection.insertMany()






Insert operations in MongoDB always target a single collection at a time, ensuring data integrity and structure.



1. Practical Example: Inserting a Single Document

This method inserts a single object into the database.




db.passengers.insertOne({"name": "Jennifer", "age": 21, "seat": 34})






2. Practical Example: Inserting Multiple Documents

This method inserts an array of objects into the database.




   db.passengers.insertMany([
{ "name": "Michael", "age": 30, "seat": 12 },
{ "name": "Sarah", "age": 25, "seat": 18 },
{ "name": "David", "age": 40, "seat": 22 },
{ "name": "Emily", "age": 28, "seat": 7 },
{ "name": "James", "age": 35, "seat": 15 }
])









II. Find Data(Retrieving) Operations in MongoDB



In MongoDB, we can retrieve documents from a collection using two methods: find() and findOne().






1. Fetching Multiple Documents with find()



The find() method is used to retrieve multiple documents that match a given condition. If no condition is specified, it will return all documents in the collection.



Example: Retrieve all passengers




db.passengers.find()






Your results should look like this:



Find Operation in MongoDb






2. Fetching a Single Document with findOne()



To fetch only a single document, we use findOne(). This method returns the first document that matches the query. If no filter is provided, it returns the first document found in the collection.




db.passengers.findOne()






Note: findOne() always returns only the first document, even if multiple documents match the query.






3. Filtering Data in Queries



To refine the results, we can provide a query object in the find() or findOne() method to match specific conditions.



Example 1: Find all passengers aged 30




db.passengers.find({ age: 30 })









4. Selecting Specific Fields (Projection)



In MongoDB, when using the find() method, you can specify which fields to include or exclude in the results using a projection object.





  • 1 means include the field.


  • 0 means exclude the field.



Example 1: Include only name and seat fields




db.passengers.find({}, { name: 1, seat: 1 })






This will return documents with only the name and seat fields, and the _id field will be included by default.



Example 2: Exclude _id field while including name and seat




db.passengers.find({}, { _id: 0, name: 1, seat: 1 })






This will return only the name and seat fields, excluding the _id field.






III. Updating Documents in MongoDB



To update existing documents, MongoDB provides the updateOne() and updateMany() methods.




  • The first parameter is a query object to define which document(s) should be updated.

  • The second parameter is an update object that specifies the new data to update.






1. updateOne()



The updateOne() method updates only the first document that matches the given query.



Example: Add a new field destination to Jennifer's document





  1. Find the document first (optional)




db.passengers.find({ name: "Jennifer" })







  1. Update the document using updateOne()



We'll use the $set operator to add the destination field with a value, for example, "Paris":




db.passengers.updateOne(
{ name: "Jennifer" },
{ $set: { destination: "Paris" } }
)






After updating the document, if you query the passengers collection to find Jennifer's document again, it will include the newly added field destination.



Update Operation in MongoDb






2. updateMany()



If you want to update multiple documents at once, you can use updateMany(). It will update all documents that match the query.



** Example: Update the seat numbers**



For example, if all passengers with seat: 34 should now be assigned seat: 30, you can do this:





  1. Find the document first (optional)




db.passengers.find({ seat: 34 })







  1. Use updateMany() to update all passengers with seat 34:




db.passengers.updateMany(
{ seat: 34 },
{ $set: { seat: 40 } }
)







  1. Check the updated passengers:




   db.passengers.find({ seat: 40 })









3. replaceOne() – Replace a Document



The replaceOne() method replaces the entire document that matches the query with a new document. This is different from updateOne(), where you only update specific fields in the document.



Example:

Let's say you want to replace the document for the passenger named "Jennifer" with a completely new document. Here's how you would do it:




db.passengers.replaceOne(
{ name: "Jennifer" },
{ name: "Jennifer", age: 22, seat: 45, destination: "New York" }
)






In this case:



The first parameter ({ name: "Jennifer" })specifies the query to find the document.



The second parameter ({ name: "Jennifer", age: 22, seat: 45, destination: "New York" })is the new document that will replace the existing one.



Important Notes:




  • replaceOne() will completely replace the existing document with the new one.


  • If the fields you do not include in the new document, they will be removed from the document.


  • Unlike updateOne(), it does not modify only specific fields but replaces the whole document.







IV. Delete Documents in MongoDB



To remove documents from a MongoDB collection, you can use the following methods:




  • deleteOne(): Deletes a single document that matches the query.


  • deleteMany(): Deletes all documents that match the query.







deleteOne() – Remove One Document



The deleteOne() method deletes the first document that matches the query.



Example: To delete a passenger named "Jennifer" from the flights.passengers collection, you can use:




db.passengers.deleteOne({ name: "Jennifer" })







This will remove only the first document that matches the name "Jennifer".






deleteMany() – Remove Multiple Documents



Example: To delete all passengers who have the destination "Paris" from the flights.passengers collection:




db.passengers.deleteMany({ destination: "New York" })









How to Perform CRUD Operations Visually in DbSchema



Once you're connected to your MongoDB flights database in DbSchema, you'll be able to view the collections created during the previous lessons. In this case, we're working with the passengers collection, which already has data and fields defined.






1. Access the Data Editor




  • First, click on the passengers table in the DbSchema interface.

  • Select "Data Editor" from the options that appear. This will open a grid view, almost like an Excel table, showing the data in your passengers collection.



CRUD Operations in MongoDb with DbSchema






2. Visualizing the Data




  • In the Data Editor, you can see your data as it is stored. This view makes it easy to work directly with your MongoDB data without needing to write any queries.






3. Adding a New Field (Like the CREATE operation in MongoShell)




  • To add a new field to a document, simply click the "+" button.

  • Enter the data you want to add in the new field, and then click the Save icon to save your changes.


    • (In MongoShell, this would be similar to using the insertOne() or insertMany() methods to insert a new document with additional fields into the collection.)











4. Filtering Data (Like the FIND operation in MongoShell)




  • If you want to view only specific data, right-click on the Data Editor grid and select "Filter".

  • This allows you to set filters for certain fields, making it easy to narrow down the results and find the exact data you're looking for.


    • (In MongoShell, this would be like using the find() or findOne() methods with query parameters to filter the data.)











5. Updating Data (Like the UPDATE operation in MongoShell)




  • You can modify any field's data directly in the grid. For example, you can update the name, age, destination, and other fields visually.

  • Once you make changes, just click Save to update the record in the MongoDB collection.


    • (In MongoShell, this would be similar to using the updateOne() or updateMany() methods to update existing documents.)











6. Modifying the Collection (DDL - Like ALTER operations in MongoShell)




  • If you need to modify the collection itself (e.g., add, update, or delete fields in the structure), you can do this directly from the diagram view in DbSchema. This allows you to visually change the schema of your MongoDB collection.


    • (In MongoShell, this would be equivalent to using commands like db.collection.update() for modifying documents or using db.createCollection() for creating new collections.)











7. Deleting Data (Like the DELETE operation in MongoShell)




  • To delete an entry (or data) from the collection, click the bin icon or right-click on a record and choose "Delete Record".

  • This will remove the document from the collection.


    • (In MongoShell, this would be similar to using the deleteOne() or deleteMany() methods to delete documents from the collection.)











CRUD Operations in MongoDb with DbSchema



This is how you can manage all the CRUD operations in a simple and efficient way using DbSchema.

It's a Data Manipulation Language (DML) process where you work directly with the data (insert, update, delete).

However, if you're modifying the structure of the collection (like adding or removing fields), this involves Data Definition Language (DDL) operations, which can also be done visually in DbSchema.



With DbSchema's visual interface, you can handle MongoDB's CRUD operations without writing complex queries. This makes it a lot easier to manage your database, especially if you're just starting with MongoDB!






Next Lesson



Understanding Embedded Documents & Arrays in MongoDB.

Next Lesson

Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten Create, Read, Update, Delete (CRUD) | MongoDB Tutorial 2025

Thematisch verwandte Begriffe: Create, Read, Update, Delete · 6 Treffer

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-82000 | Adobe Experience Manager Forms JEE is affected by a Server-Side Request …
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick