Oracle/Select into table
Jump to navigation
Jump to search
In Oracle we have no such thing as a "SELECT * INTO table" statement, like we have in T-SQL. But we have alternatives.
create table new_table as select * from old_table;In Oracle we have no such thing as a "SELECT * INTO table" statement, like we have in T-SQL. But we have alternatives.
create table new_table as select * from old_table;