Skip to content

Commit 977f23e

Browse files
authored
Add topic "CRUD"
1 parent 1da9722 commit 977f23e

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

topics/crud/index.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
display_name: CRUD
3+
aliases: crudl,
4+
short_description: CRUD is an acronym that stands for create, read, update and delete as persistent storage operations.
5+
topic: crud
6+
related: sql, database, query, rest
7+
wikipedia_url: https://en.wikipedia.org/wiki/CRUD
8+
created_by: James Martin
9+
released: 1983
10+
---
11+
**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.
12+
| CRUD | SQL | HTTP |
13+
|-|-|-|
14+
| **C**reate | `INSERT` | `POST` |
15+
| **R**ead | `SELECT` | `GET` |
16+
| **U**pdate | `UPDATE` | `PUT` to replace, `PATCH` to modify |
17+
| **D**elete | `DELETE` | `DELETE` |

0 commit comments

Comments
 (0)