simple-queries
CREATE Query
Creates a new table named
employees
with columnsid
,name
, andage
.
SELECT Query
Retrieves all columns and rows from the
employees
table.
INSERT Query
UPDATE Query
Modifies the
age
of the employee named 'John Doe' to 35.
DELETE Query
Deletes the employee named 'John Doe' from the
employees
table.
Last updated