How do you add a row to a SQL table?
insert into
What is a tuple?
values being inserted are also wrapped in () in parenthesis in the same order as the columns they belong to.
How do you add multiple rows to a SQL table at once?
use a comma for the values portion
How do you get back the row being inserted into a table without a separate select statement?
returning *;