If you need a quick way to duplicate a table (for testing or whatever) it's as simple as:

CREATE TABLE newTable LIKE oldTable;
insert into newTable select * from oldTable;