0 / 2 embers
0 / 3000 xp
click for more info
Complete a lesson to start your streak
click for more info
Difficulty: 4
click for more info
No active XP Potion
Accept a Quest
Login to submit answers
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
- CREATE
HTTP GET
- READ
HTTP PUT
- UPDATE
HTTP DELETE
- DELETE
We'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.
Focus Editor
Alt+Shift+]
Next Tab
Alt+Shift+[
Become a member to Submit
Become a member to Run
Become a member to view solution