INSERT INTO table2Otherwise, You must specify the column names you want to copy (the column list is optional for 'table2' if you are specifying a value for all columns and selecting the columns in the same schema order of 'table2'.
SELECT * FROM table1
INSERT INTO table2(col1, col2, col3)
SELECT col1, col2, col3
FROM table1
Please disable your ad blocker and refresh the window to use this website.