Write a program in PL/SQL to insert records from one table to another.
Answers
Answered by
0
Answer:
The SQL INSERT INTO SELECT Statement
The INSERT INTO SELECT statement copies data from one table and inserts it into another table. The INSERT INTO SELECT statement requires that the data types in source and target tables matches. Note: The existing records in the target table are unaffected.
Similar questions