Answers for "how to duplicate data in table to anothe table sql"

SQL
0

sql how to duplicate a table

CREATE TABLE new_table LIKE original_table;
INSERT INTO new_table SELECT * FROM original_table;
Posted by: Guest on February-01-2021

Code answers related to "how to duplicate data in table to anothe table sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language