Thread
:
How to COUNT records in UNION?
View Single Post
#
4
(
permalink
)
07-02-2007, 12:51 PM
Unregistered
Posts: n/a
ANY
answer.
Re: How to COUNT records in UNION?
select count(*) from (select .......)
union
select count(*) from (select.....);
Unregistered