How do you add a row to a SQL table?
insert into table name(column), values ()
What is a tuple?
list of values (inside the parenthesis for values).
How do you add multiple rows to a SQL table at once?
you add with more () and separate by commas
How do you get back the row being inserted into a table without a separate select statement?
returning clause.