CRUD
Create, read, update and delete.
In computer programming, create, read, update, and delete (CRUD) are the four basic functions of persistent storage. Alternate words are sometimes used when defining the four basic functions of CRUD, such as retrieve instead of read, modify instead of update, or destroy instead of delete. CRUD is also sometimes used to describe user interface conventions that facilitate viewing, searching, and changing information; often using computer-based forms and reports. The term was likely first popularized by James Martin in his 1983 book Managing the Data-base Environment. The acronym may be extended to CRUDL to cover listing of large data sets which bring additional complexity such as pagination when the data sets are too large to be easily held in memory.
CRUD
Operation | SQL | HTTP | RESTful WS | DDS |
Create | INSERT | PUT / POST | POST | write |
Read (Retrieve) | SELECT | GET | GET | read / take |
Update (Modify) | UPDATE | PUT / POST / PATCH | PUT | write |
Delete (Destroy) | DELETE | DELETE | DELETE | dispose |
See also
- Representational State Transfer (REST)
- php-crud-api - 파일1개로 DB에 REST API 추가하기 (php)