-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4034 from shaedrich/crud
Add topic "CRUD"
- Loading branch information
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
display_name: CRUD | ||
aliases: crudl, | ||
short_description: CRUD is an acronym that stands for create, read, update and delete as persistent storage operations. | ||
topic: crud | ||
related: sql, database, query, rest | ||
wikipedia_url: https://en.wikipedia.org/wiki/CRUD | ||
created_by: James Martin | ||
released: 1983 | ||
--- | ||
**CRUD** is an acronym that stands for create, read, update and delete in the context of database queries or HTTP verbs in case of REST APIs. | ||
| CRUD | SQL | HTTP | | ||
|-|-|-| | ||
| **C**reate | `INSERT` | `POST` | | ||
| **R**ead | `SELECT` | `GET` | | ||
| **U**pdate | `UPDATE` | `PUT` to replace, `PATCH` to modify | | ||
| **D**elete | `DELETE` | `DELETE` | |