hi,
select sub.*
from
(
select a
from
table1
union all
select a
from
table2
)sub
this query gives error in sybase 12.0. Whereas when the same query was executed in sybase 15 version, it works fine. This says that 12.0 does not support sub-query in FROM clause.
Any other alternative to achieve this in sybase 12.0
Got stuck, please help.