i have 3 select statements using union.
lets say
select ord_no1, description1, amount1
from table1
union
select ord_no2, description2, amount2
from table2
union
select ord_no3, description3, amount3
from table3
wherein DESRICRIPTION1 has long datatype
while DESRIPTION2 and DESCRIPTION3 has varchar2 datatype...
how can i use description1 with union?
lets say
select ord_no1, description1, amount1
from table1
union
select ord_no2, description2, amount2
from table2
union
select ord_no3, description3, amount3
from table3
wherein DESRICRIPTION1 has long datatype
while DESRIPTION2 and DESCRIPTION3 has varchar2 datatype...
how can i use description1 with union?