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

I am perplexed by the following issue. I am doing a left outer join and it's returning MORE rows than no join at all.

select COUNT(*) specimen_id from QuickLabDump a
left outer join PracticeandPhysician c
on (a.[Requesting Physician]=c.doctorfirstname+' '+c.DOCTORLASTNAME
        and a.[practice code]=c.practicecode)
 where 
DATEPART(mm, [DATE entered]) =12
and
DATEPART(yy, [DATE entered])=2011

yields 108387

whereas

select COUNT(*) specimen_id from QuickLabDump a
 where 
DATEPART(mm, [DATE entered]) =12
and
DATEPART(yy, [DATE entered])=2011

yields 108357

Shouldn't they be returning the same exact amount of rows?

share|improve this question
1  
If you wanna eliminate duplicates you can use COUNT(DISTINCT a.id) – Bassam Mehanni Jan 6 '12 at 18:40

4 Answers

up vote 7 down vote accepted

Second table may have more rows per 1 row in main table, thats the point

share|improve this answer
how do i not return duplicates? – Артём Царионов Jan 6 '12 at 18:32
Use count(distinct specimen_id) instead of count(*) – Oleg Dok Jan 6 '12 at 18:54
1  
I've hit the reputation cap for today, can you all revote me tomorrow? 8-D – Oleg Dok Jan 6 '12 at 19:48
please, revote me, if it still your opinion 8-) – Oleg Dok Jan 7 '12 at 5:34

This happens when the joined PracticeandPhysician table contains multiple rows for a key in the QuickLabDump table.

This query

select COUNT(*), c.practicecode, a.[Requesting Physician],speciment_id
from QuickLabDump a
left outer join PracticeandPhysician c
on (a.[Requesting Physician]=c.doctorfirstname+' '+c.DOCTORLASTNAME
    and a.[practice code]=c.practicecode)
where 
DATEPART(mm, [DATE entered]) =12
and
DATEPART(yy, [DATE entered])=2011
GROUP BY c.practicecode, a.[Requesting Physician], speciment_id
HAVING COUNT(*) > 1

Should tell you which rows have duplicates.

share|improve this answer
how do i not return duplicates? – Артём Царионов Jan 6 '12 at 18:34
1  
@I__ Which data should be returned in that case, and how? You have to squish it or discard it. – user166390 Jan 6 '12 at 18:46
@I__ First, figure out which rows cause duplicates. Is this because multiple physicians requested the same specimen, or is this because your data contains unintended duplicates? The way to fix the problem would depend on your answer to this question. – dasblinkenlight Jan 6 '12 at 18:59

Perplexing, yes, but understandable.

If you want to see what you're getting from the first query that is not in the second query, SELECT the records in the first resultset that are not in the second resultset.

You might also try adding DISTINCT to your queries.

share|improve this answer

You have duplicates in the PractiveandPhysician table.

It's only if you join on a unique value that you never get more records.

share|improve this answer
how do i not return duplicates? – Артём Царионов Jan 6 '12 at 18:32
@I__ - What makes you think that you are not returning duplicates? – Lamak Jan 6 '12 at 18:34

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.