If two tables are the same, I can do this:
INSERT INTO same_structure_table
SELECT * FROM first_table WHERE ID=121
Where 121 is the id of the record I want to copy.
I can then change the ID and move back as a new record into the first_table.
Is there a quicker way to do this WITHOUT listing field names (using * instead)? So that you copy the record into the SAME table, but not the ID, and let auto_increment do its thing?
That would be VERY COOL.
Thanks if you know the answer.
Sam