Duplicate MySQL data from one table to another

To copy all records from table one into table two (except record 1) use this:

INSERT INTO table_two SELECT * FROM table_one WHERE id != '1'

About Keiron

Web Developer based in the UK. Click here if you want to work with me