Anonymous Asked in Cars &Transportation · 2 weeks ago

How do you duplicate a table in SQL?

Contents
How to Duplicate a Table in MySQL CREATE TABLE new_table AS SELECT * FROM original_table; Please be careful when using this to clone big tables. . CREATE TABLE new_table LIKE original_table; . INSERT INTO new_table SELECT * FROM original_table;


Related Questions

Relevance
Write us your question, the answer will be received in 24 hours