#
CRUD
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 |
|-|-|-|
| Create | INSERT | POST |
| Read | SELECT | GET |
| Update | UPDATE | PUT to replace, PATCH to modify |
| Delete | DELETE | DELETE |
The crud topic hasn't been used on
any public repositories, yet.
Explore topics