Make a copy of mysql table

One SQL to make a copy of existing MySQL table ( table structure and records )

1
CREATE TABLE clone_table SELECT * FROM original_table WHERE 1
  • Share/Save/Bookmark

Leave a Reply