View Single Post
  #9 (permalink)  
Old 07-26-2007, 06:02 PM
Unregistered
 
Posts: n/a
Smile 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
Reply With Quote