Quote:
|
Originally Posted by wedouglas
Im just trying to create a fix for a problem im having. is there a quick way to copy data from one table to another?
|
Code:
insert into TARGET_TABLE
select column1, column2, column3, etc from SOURCE_TABLE
where some_column=some_criteria;