P'Beer told me yesterday about how to find out the number of all items (from many selects). This is the solution.
[SQL]
select count(*)
from(select .......)
UNION(select .......) Table_Name
Note: you've to specify the Name (Table_Name) after the last select.
No comments:
Post a Comment