I have a syntax that can copy all records from tables that have the same fields:
INSERT INTO table2 SELECT * FROM table1 WHERE id = '7'
So I would like to know how do I keep copying all values except the 'id' field (because him is primary key and auto increment).