CRUD is an acronym that stands for CREATE, READ, UPDATE, and DELETE. These four operations are the bread and butter of nearly every database you will create.
The CRUD operations correlate nicely with the HTTP methods we learned in the Learn HTTP Clients course.
HTTP POST - CREATEHTTP GET - READHTTP PUT - UPDATEHTTP DELETE - DELETEWe've created a table for you called crud, it's a toy table we're using for interview practice at CashPal.
Determine which SQL command can be used for a READ operation and use it to read all the fields in all the records in the crud table!
Reading data is just another way of saying retrieving data.