In Oracle, if you want to backup a table named table1 to another table named table1_backup,
you can use the following SQL:
create table table1_backup as select * from table1;
In Oracle, if you want to backup a table named table1 to another table named table1_backup,
you can use the following SQL:
create table table1_backup as select * from table1;