PL SQL Buat tabel dari tabel lain

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