Answers for "create table from extsting table"

SQL
0

create a table from one field of another table

SQL> CREATE TABLE SALARY AS
   SELECT ID, SALARY
   FROM CUSTOMERS;
Posted by: Guest on July-09-2020
0

sql create table with columns as another table

SELECT * INTO newtable FROM oldtable WHERE 1 = 0;
Posted by: Guest on December-07-2020

Code answers related to "create table from extsting table"

Code answers related to "SQL"

Browse Popular Code Answers by Language