The SELECT INTO statement is used to copy a table data into another table.
Syntax:
Select * into destinationTable from sourceTable;
Example:
Select * into EMPLOYEE1 from EMPLOYEE;
The SELECT INTO statement is used to copy a table data into another table.
Syntax:
Select * into destinationTable from sourceTable;
Select * into EMPLOYEE1 from EMPLOYEE;