PL SQL Erstellen Sie die Tabelle aus einer anderen Tabelle aus

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