1INSERT INTO table1 (col1, col2) VALUES (3, 'A string');
2INSERT INTO table1 (col1) VALUES (3); -- col2 will be NULL if allowed
3INSERT INTO table1 VALUES (3, 'A string'); -- all table1 columns
4INSERT INTO table1 (col1, col2) SELECT value3, value1 FROM table2;