Duplicate a table

suggest change

To duplicate a table, simply do the following:

CREATE TABLE newtable LIKE oldtable; 
INSERT newtable SELECT * FROM oldtable;

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


CREATE TABLE:
*Duplicate a table

Table Of Contents