Oracle/Select into table
Revision as of 13:11, 9 December 2009 by Andy (talk | contribs) (Oracle/Select into moved to Oracle/Select into 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;