Créez une table à partir d'un champ d'une autre table

SQL> CREATE TABLE SALARY AS
   SELECT ID, SALARY
   FROM CUSTOMERS;
Unusual Unicorn