We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1da9722 commit 977f23eCopy full SHA for 977f23e
topics/crud/index.md
@@ -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