The INSERT Clause

This is used to insert values into a new row in a table. The syntax is:

INSERT INTO tableName(field-list) VALUES (value-list);

"field-list" and "value-list" are comma separated lists.