PL SQL Crear tabla desde otra tabla

CREATE TABLE new_table
  AS (SELECT * FROM old_table);
Helpful Heron