How do you add a row to a SQL table?
INSERT INTO “tableName” (“nameOfValue”)
VALUES (‘valueData’)
What is a tuple?
a tuple is a list of values
How do you add multiple rows to a SQL table at once?
VALUES (‘valueData’), (‘valueData2’)
aka a comma seperated list of tuples
How do you get back the row being inserted into a table without a separate select statement?
RETURNING * | or specified column names