January 2, 2014 at 2:04 am
Having a bit of a brain freeze at the moment!
I wish to extract data from 2 tables which are linked by dbPatID but don't want duplicate rows created when there is more than one occurrence of dbPatID in table 2 which is what this sql is bringing back.
Select EPSAgedBalances.dbPatID, EPSAgedBalances.dbPatFirstName, EPSAgedBalances.dbPatLastName,
EPSAllContracts.dbStaffLastName, EPSAgedBalances.TotTot
from EPSAgedBalances
inner join EPSAllContracts on EPSAllContracts.dbPatID = EPSAgedBalances.dbPatID
where EPSAgedBalances.TotTot < 0
In other words I'm just after the dbStaffLastName from table 2 that matches up with dbPatID.
thanks
January 2, 2014 at 2:18 am
Happy new year! ๐
So one contract can have multiple aged balances?
How about the below:
Select b.dbPatID, a.dbPatFirstName, a.dbPatLastName, b.dbStaffLastName, SUM(a.TotTot) AS TotTot
from EPSAgedBalances AS a
inner join EPSAllContracts AS b
on b.dbPatID = a.dbPatID
GROUP BY b.dbPatID, a.dbPatFirstName, a.dbPatLastName, b.dbStaffLastName
HAVING SUM(a.TotTot) < 0
---------------------------------------------------------
It takes a minimal capacity for rational thought to see that the corporate 'free press' is a structurally irrational and biased, and extremely violent, system of elite propaganda.
David Edwards - Media lens[/url]
Society has varying and conflicting interests; what is called objectivity is the disguise of one of these interests - that of neutrality. But neutrality is a fiction in an unneutral world. There are victims, there are executioners, and there are bystanders... and the 'objectivity' of the bystander calls for inaction while other heads fall.
Howard Zinn
January 2, 2014 at 2:30 am
Here's an alternative to Abu Dinas' suggestion;
SELECT
b.dbPatID,
b.dbPatFirstName,
b.dbPatLastName,
x.dbStaffLastName,
b.TotTot
FROM EPSAgedBalances b
CROSS APPLY (
SELECT TOP 1 dbStaffLastName
FROM EPSAllContracts c
WHERE c.dbPatID = b.dbPatID
) x
WHERE b.TotTot < 0
Not necessarily better - you should try both and compare performance.
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
January 2, 2014 at 3:01 am
Hi Guys, thanks for your help. I found simply adding distinct has done the trick
Select distinct EPSAgedBalances.dbPatID, EPSAgedBalances.dbPatFirstName, EPSAgedBalances.dbPatLastName,
EPSAllContracts.dbStaffLastName, EPSAgedBalances.TotTot
from EPSAgedBalances, EPSAllContracts
where EPSAllContracts.dbPatID = EPSAgedBalances.dbPatID
and TotTot < 0
thanks
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply