Oracle/Select into table

From YavInWiki
Revision as of 11:34, 10 December 2009 by Andy (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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;