Copier ou dupliquer une table sans faire un dump / restore de ta table
Copier juste la structure de la table :
create table <nom_de_la_nouvelle_table> as
table <nom_de_la_table_a_copier>;
with no data;
Copier/ dupliquer l'intégralité de la table :
create table <nom_de_la_nouvelle_table> as
table <nom_de_la_table_a_copier>;
Copier partiellement la table :
create table <nom_de_la_nouvelle_table> as
select
*
from
<nom_de_la_table_a_copier>
where
<vos_critères_de_selection>;