create a table from one field of another table

Solutions on MaxInterview for create a table from one field of another table by the best coders in the world

showing results for - "create a table from one field of another table"
Marlene
23 Feb 2019
1SQL> CREATE TABLE SALARY AS
2   SELECT ID, SALARY
3   FROM CUSTOMERS;