IT Questions and Answers :)

Friday, February 23, 2018

CRUD is create, read, update and delete. How can we interpret in sql commands?

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; 

 
CRUD is create, read, update and delete. How can we interpret in sql commands?

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.

SOURCE

https://www.sqlshack.com/creating-using-crud-stored-procedures/

Share:

0 comments:

Post a Comment

Popular Posts