Skip to content

Commit

Permalink
Merge pull request #4034 from shaedrich/crud
Browse files Browse the repository at this point in the history
Add topic "CRUD"
  • Loading branch information
ahpook authored Nov 27, 2023
2 parents 4a033a1 + 977f23e commit 762087c
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions topics/crud/index.md
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` |

0 comments on commit 762087c

Please sign in to comment.