I can copy a MySQL table to create a new table:
CREATE TABLE newtable SELECT * FROM oldtable
This works, but the indexes are not copied to
CREATE TABLE newtable LIKE oldtable; INSERT INTO newtable SELECT * FROM oldtable;