CRUD

CRUD

Create, Read, Update, and Delete are four basic operations of data storage, and are frequently used by SQL and HTTP

  1. Create
    1. Create variables and set initial values
    2. e.g., create variable "hostname" and set the value to "Router1"
  2. Read
    1. Retrieve the value of a variable
    2. e.g., what is the variable "hostname"?
  3. Update
    1. Change the value of an existing variable
    2. e.g., change the value of variable "hostname" to "Router2"
  4. Delete
    1. Delete variables
Operation SQL HTTP
Create INSERT POST
Read (retrieve) SELECT GET
Update (modify) UPDATE PUT/PATCH
Delete (destroy) DELETE DELETE

Metadata

OSI or TCP/IP Layer

CCNA Exam Topic

Contributors

Sources