Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Left join oldest (min) record

Status
Not open for further replies.

PRMiller2

Technical User
Jul 30, 2010
123
My SQL is not where it should be -- I've done a search and can't seem to get the syntax of this quite right.

I am selecting all Claims from my ClaimDetail table, and related Contacts in the ContactHistory table, but only the most recent one. In a nutshell:

1. If a claim has not had any contacts, I want to show it
2. If it has had contacts, I only want to show the most recent one

Here's what I've got so far:

Code:
SELECT a.ClaimDetailID, b.ContactStart, a.PrescriberID
FROM ClaimDetail AS a 
LEFT JOIN ContactHistory AS b ON a.ClaimDetailID = b.ClaimDetailID_fk
AND b.ContactStart = (SELECT MAX(b1.ContactStart) AS NewestContact
FROM ContactHistory b1 WHERE b.ClaimDetailID_fk = b1.ClaimDetailID_fk);

I'm receiving this error: Syntax error in query expression "

Where am I going wrong?

Thanks,
Paul
 
What about simply this ?
Code:
SELECT a.ClaimDetailID, Max(b.ContactStart) AS NewestContact, a.PrescriberID
FROM ClaimDetail AS a 
LEFT JOIN ContactHistory AS b ON a.ClaimDetailID = b.ClaimDetailID_fk
GROUP BY a.ClaimDetailID, a.PrescriberID

Hope This Helps, PH.
FAQ219-2884
FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top