Create Read Update Delete (CRUD)
- Category :
- Concept
- Tags :
- general_computing_gleanings
- http
- http_method
- c
- Created:
Table of Contents
About
CRUD (Create, Read, Update, Delete) is an acronym for ways one can operate on stored data; it is a mnemonic for the four basic functions of persistent storage1. It refers to operations performed in a database or datastore, but it can also apply to higher level functions of an application such as soft deletes where data is not actually deleted but marked as deleted via a status.
CRUD Operations
Operation | HTTP method (HTTP verb) |
---|---|
Create | POST method |
Read | GET method |
Update | PATCH method |
Delete | DELETE method |
Anki
Links
References
MDN. “Create Read Update Delete (CRUD)”. Available at: https://developer.mozilla.org/en-US/docs/Glossary/CRUD. (Accessed: ). ↩︎
Share :
Other Articles
- Published:
- PATCH method
- Category: Concept
- Published:
- HyperText Markup Language (HTML)
- Category: Concept
- Published:
- If-Match header
- Category: Concept