Answers for "create another table from existing table sql oracle"

SQL
1

create another table from existing table sql oracle

CREATE TABLE new_table AS (SELECT * FROM old_table WHERE 1=2);
Posted by: Guest on November-14-2021

Code answers related to "create another table from existing table sql oracle"

Code answers related to "SQL"

Browse Popular Code Answers by Language