PDA

View Full Version : SELECT INTO > sqlserver vs oracle


Roelf
08-06-2003, 12:34 PM
in sql server i can do:

select *
into temptable
from existingtable


sqlserver then creates the temptable and copies the existingtable (structure and data) to the temptable.

how can i achieve this in oracle??