Answers for "how to duplicate a 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
0

duplicate table sql

CREATE TABLE new_table LIKE original_table;
Posted by: Guest on July-31-2021

Code answers related to "how to duplicate a table in sql developer"

Code answers related to "SQL"

Browse Popular Code Answers by Language