How do you add a row to a SQL table?
Insert into “table name” (“list”, “of”, “columns”)
Values (‘list’, ‘of’, ‘values’)
(for values: text in single quotes, numbers no quotes)
What is a tuple?
A tuple is a list of values
How do you add multiple rows to a SQL table at once?
Data rows can be batch inserted into a database table 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?
returning followed by * or “column name(s)”