outpurt in a table
I want the output of the following query in a table .
select col1 from tab1
minus
select col2 from tab2
how can I do it.
thanks
select col1 from tab1
minus
select col2 from tab2
how can I do it.
thanks
0