CRUD is create, read, update and delete. How can we interpret in sql commands?
- Create, Read, Upgrade and Delete;
- Create, Read, Update and Delete;
- Insert, Select, Upgrade and Delet;
- Insert, Select, Update and Delete;
EXPLANATION
This procedure performed using SQL is known as CRUD - Create, Read, Update and Delete which is nothing more than the composition of the basic operations that an application performs in a database, creating, reading, updating and deleting data. See the abbreviation CRUD mapped below:Create -> INSERT;
Read -> SELECT;
Update -> UPDATE;
Delete -> DELETE.
0 comments:
Post a Comment