Does Oracle have an equivalent of SQL Server's table variables?
Posted
by Margaret
on Stack Overflow
See other posts from Stack Overflow
or by Margaret
Published on 2009-03-22T02:44:50Z
Indexed on
2010/04/10
21:43 UTC
Read the original article
Hit count: 124
Oracle
In SQL Server, you can declare a table variable (DECLARE @table TABLE), which is produced while the script is run and then removed from memory.
Does Oracle have a similar function? Or am I stuck with CREATE/DROPs that segment my hard drive?
© Stack Overflow or respective owner