synapsevampire,
I just did a simple union query. It worked for that. But then I did a more complicated query and it produced an error.
select fld1, count(fld1) as fld_cnt
from
(
select fld1 from table1
union
select fld1 from table2
)
the inner query worked, but failed when added to outer query.
thanks,