How do you add a row to a SQL table?
insert
What is a tuple?
A list of values
How do you add multiple rows to a SQL table at once?
add multiple tuples after the values keyword, all separated by commas
How do you get back the row being inserted into a table without a separate select statement?
returning *;
or specific column names in place of *