Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

4 Answers

up vote 8 down vote accepted

If you want a total count for all records, then you would do this:

SELECT COUNT(*)
FROM
(
    select distinct profile_id 
    from userprofile_...

    union all

    select distinct profile_id 
    from productions_...
) x
share|improve this answer
Considering it's from different tables (same name column, but from differents tables), he could lost results if got a same Id in both tables – Gonzalo.- Jul 31 '12 at 0:53
should there be one more distinct to remove duplicates between first and second part of union? there might be duplicate profile_id's in userprofile and productions.. – Markus Mikkolainen Jul 31 '12 at 0:53
now that you have edited you got the same answer that I posted -.- – Gonzalo.- Jul 31 '12 at 0:55
Considering that I posted it first, and I didn't edit my answer, this is at least, really unfair !!! :( – Gonzalo.- Jul 31 '12 at 2:08

you should use Union All if there are equals rows in both tables, because Union makes a distinct

select count(*) from 
(select distinct profile_id from userprofile_...

union ALL

select distinct profile_id from productions_...) x

In this case, if you got a same Profile_Id in both tables (id is probably a number, so it's possible), then if you use Union, if you got Id = 1 in both tables, you will lost one row (it will appear one time instead of two)

share|improve this answer
2  
+1: For correctly knowing how UNION/UNION ALL works – OMG Ponies Jul 31 '12 at 0:53

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.....

SELECT COUNT(*) 
FROM 
( 
select distinct profile_id from userprofile_...
union all
select distinct profile_id from productions_...
) AS t1 
share|improve this answer
1  
DISTINCT is useless on a UNION - it'd only be necessary for UNION ALL. Might not want to copy others answers ;) – OMG Ponies Jul 31 '12 at 0:52
@OMGPonies : BTW, i have not the copy the answer....I got late with fraction of second to post the answer..... – LolCoder Jul 31 '12 at 0:57

This will perform pretty well:

select count(*) from (
    select profile_id
    from userprofile_...
    union
    select profile_id
    from productions_...
) x

The use of union guarantees distinct values - union removes duplicates, union all preserves them. This means you don't need the distinct keyword (the other answers don't exploit this fact and end up doing more work).

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:

select sum(count) from (
    select count(distinct profile_id) as count
    from userprofile_...
    union all
    select count(distinct profile_id)
    from productions_...
) x

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 sum() simply adds the two counts together.

share|improve this answer
Well, you're considering that profile_id will be unique.. If I got 3 id = 1 in productions (could be a FK), and one Id = 1 in userProfile (could be a PK), then the union will give 1 row, instead of 4 (with both distinct will get 2). Then the count will fail. In the query he posted, he will get a id=1 in each select, the count should be 2 – Gonzalo.- Jul 31 '12 at 1:16
@ElVieejo That's what I thought he wanted. Edited answer – Bohemian Jul 31 '12 at 6:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.