Aside from cursor what function can I use to hold multiple columns and rows?
Here is my sample query
With a as (
select statement
), as b (
select statement
)
I want to put this in one variable or anything that can hold the return columns/rows
select a.column1 , b.column2, b.column2
from a , b