Table of contents
- Basic definition of CRUD operation
- Examples of basic operations
- What is CRUD in MongoDB?
- How to perform CRUD operations
- CRUD performance in relational vs non-relational
- Summary
- FAQs
Basic definition of CRUD operation
Most of the transactional interactions that a user has with a digital platform, like a website or web application, include requests for four basic operations:
- Creating something new (for example, a customer profile).
- Reading (like fetching order details for a user).
- Updating information (like a user’s mobile number or email address).
- Deleting (for instance, a work phone number).
CRUD is data-oriented, and it's standardized according to HTTP action verbs. The front end of an application captures the information and sends it as an HTTP request to the middleware, which calls the appropriate database functions to complete the task. These four basic functions are collectively called CRUD, the acronym for create, read, update, and delete.

