-- the following statement inserts values value1, value2 and value3
-- into columns column1, column2, column3 respectively
INSERT INTO table_name (column1, column2, column3)
VALUES(value1, value2, value3);
-- the following statement inserts the values in order into
-- all the columns of the table
INSERT INTO table_name
VALUES(value1, value2, value3);