Create Read Update Delete (CRUD)

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

OperationHTTP method (HTTP verb)
CreatePOST method
ReadGET method
UpdatePATCH method
DeleteDELETE method

Anki

References


  1. MDN. “Create Read Update Delete (CRUD)”. Available at: https://developer.mozilla.org/en-US/docs/Glossary/CRUD . (Accessed: [2025-05-07 Wed 03:16]). ↩︎

Random Posts