How do you add a row to a SQL table?
insert into statement
What is a tuple?
a list of values
How do you add multiple rows to a SQL table at once?
add multiple tuples separated by commas
How do you get back the row being inserted into a table without a separate select statement?
returning *
How do you update rows in a database table?
update statement and set clause
Why is it important to include a where clause in your update statements?
so that it targets a specific row and not all rows
How do you delete rows from a database table?
delete from statement
How do you accidentally delete all rows from a table?
only putting delete statement