Copy SQL Table in Oracle

1. You can create a copy of a table using SQL command in Oracle database.

2. As an example, you want to create a copy of itsiti table to a new table called ara

SQL> create table ara as select * from itsiti;

3. Check the newly created table (compare with the original).

You May Also Like

Leave a Reply?