I have the following query:
select distinct profile_id from userprofile_...
union
select distinct profile_id from productions_...
How would I get the count of the total number of results?
|
I have the following query:
How would I get the count of the total number of results? |
||||
|
|
|
If you want a total count for all records, then you would do this:
|
|||||||||
|
|
you should use
In this case, if you got a same |
|||||
|
|
As omg ponies has already pointed out that there is no use of using distinct with UNION, you can use UNION ALL in your case.....
|
|||||||
|
|
This will perform pretty well:
The use of Edited:If you want to total number of different profile_id in each, where given values that appear in both table are considered different values, use this:
This query will out-perform all other answers, because the database can efficiently count distinct values within a table much faster than from the unioned list. The |
|||||
|