Answers for "oracle sql copy table without data"

SQL
0

oracle sql copy table without data

-- Copy datas and structure:
CREATE TABLE new_table AS SELECT * FROM my_table;
-- Copy structure only:
CREATE TABLE new_table AS SELECT * FROM my_table WHERE 1=0;
Posted by: Guest on January-31-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language