What Is CRUD Operation In Backend Development

moonchild

VIP Contributor
Backend development deals with accepting of data from the frontend and then processing it and then send it to the database, so when dealing with backend development there are certain things that are like concepts that you need to know to be able to successfully build a functional app, today we will go through the CRUD operation and see how it works, every app you can think of to an extent deals with CRUD operation, here is a breakdown of the CRUD operation:

1) Create: This deals with anything concerning creation, like think of creating a new account, create a post, create a comment or anything that deals with creation a new instance on the web app.

2) Read: This deals with getting data to display and on the frontend, so when you use READ request you are trying to get data from the database like when you make a search and it returns data fetched from the database.

3) Update: This deals with updating already existing data from the database, an example of this is when you edit an already created profile or updating a post or a comment or any classification of data that can be modified.

4) Delete: This deals with deleting existing records by removing them completely from the database.
 
Top