Thread
:
How to COUNT records in UNION?
View Single Post
#
9
(
permalink
)
07-26-2007, 06:02 PM
Unregistered
Posts: n/a
ANY
answer.
Re: How to COUNT records in UNION?
MapGeek,
Try this and tell me is it solving your problem or not
select sum( counter)
from (select count(*) counter from Table1
Union
select count(*) from Table2
);
Sheetal
Unregistered