Disclaimer - My knowledge of SQL Server is limited. So I apologize in advance if this is a 'dumb' question.
Purpose of query - gathering information from a multi-table database from a program our company uses and depositing the results into our web database so we can display some of the information.
Issue - duplicate information. Part of the issue is that there are multiple instances of people in the database, so there are results duplicated that way... and the other duplicates come from the join. I need to combine the results so that I deposit just one result with the same Name or Code (ID). The rest of the information I would like to combine so that I don't lose any information that may be needed.
Here is query I have:
SELECT people.Code AS [athlete-id],
people.Name AS [athlete-name],
people.DOB AS [DOB],
people.Division AS [agency-id],
certifs.[Expiration date] AS [expiration-date],
groups.Name AS [agency-name],
address.Addresses AS [address],
address.City AS [city],
address.State AS [state],
case when tags.Field = 'ABJD86GHKXXQWA9Q'
then tags.Value
end AS [restrictions],
case when tags.Field = 'VH2C78N9A15S059T'
then tags.Value
end AS [comments]
FROM people
LEFT OUTER JOIN certifs
ON people.Code = certifs.Owner
LEFT OUTER JOIN groups
ON people.Division = groups.Code
LEFT OUTER JOIN address
ON people.Code = address.Owner
LEFT OUTER JOIN tags
ON people.Code = tags.Owner
ORDER BY [agency-name], [athlete-name]
Let me know of any questions you may have. I appreciate the help.
tags.Field- add the clause as part of theJOINcondition (and use two references to the table, not one). If you have duplicate people data, that's a problem that should be resolved seperately from this issue. – Clockwork-Muse Apr 9 '12 at 15:13