EN
What's the meaning of CRUD in context of SQL?
3
answers
3
points
Hi, can anyone tell me what does CRUD stand for in the context of SQL?
3 answers
3
points
CRUD is an acronym for:
- CREATE,
- READ,
- UPDATE,
- DELETE
0 comments
Add comment
3
points
Extending the above answer, CRUD describes basic operations of persistent storage - each letter in the acronym can map to a SQL statement:
- Create - CREATE TABLE/ INSERT INTO
- Read - SELECT
- Update - UPDATE
- Delete - DELETE FROM
0 comments
Add comment
3
points
CRUD is an acronym for:
- CREATE,
- READ,
- UPDATE,
- DELETE
Useful resources:
0 comments
Add comment