PL SQL Créer un tableau à partir d'une autre table

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