Answers for "how to create duplicate table in sql developer"

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 create duplicate table in sql developer"

Code answers related to "SQL"

Browse Popular Code Answers by Language