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!

Help with query

Status
Not open for further replies.

jtrembla

ISP
Jul 6, 2006
104
US
I have a table with the following fields/records

GroupID GroupType DrugID BrandGeneric Country

1 E DrugZ Brand U.S.
2 E DrugZ Generic U.S.
3 E DrugZ Brand France
4 E DrugZ Brand Germany

I essentially need to pull back all Brand records that does not have a matching Generic record in the same country for a given drugid.

Thus, GroupID = 3 and 4 would return.
 
Code:
SELECT YourTable.GroupId,
       YourTable.GroupType,
       YourTable.DrugId,
       YourTable.BrandGeneric,
       YourTable.Country
FROM YourTable
LEFT JOIN (SELECT Country, DrugId
                   FROM YourTable
           WHERE BrandGeneric = 'Generic') Tbl1
ON YourTable.Country = Tbl1.Country AND
   YourTable.DrugId  = Tbl1.DrugId
WHERE Tbl1.DrugId IS NULL
Not Tested!

Borislav Borissov
VFP9 SP2, SQL Server 2000/2005.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top