How do you add a row to a SQL table?
use insert into statement
What is a tuple?
a list of values in SQL being inserted
How do you add multiple rows to a SQL table at once?
by specifying more than one tuple of values, separated by commas.
How do you get back the row being inserted into a table without a separate select statement?
use the returning clause