INSERT INTO… VALUES
A SQL statement used to insert data rows in a database table
Column list
The list of columns that are in the table structure. These are the table columns that will be added in the INSERT INTO SQL statement.
Value list
The data values that will be added to the table columns in the INSERT INTO SQL statement
Duplicate key
A key value that is being added to the database table that violates the PRIMARY KEY constraint.