SQL left join with multiple rows into one row
Posted
by beardedd
on Stack Overflow
See other posts from Stack Overflow
or by beardedd
Published on 2010-04-01T14:53:24Z
Indexed on
2010/04/01
15:03 UTC
Read the original article
Hit count: 187
Basically, I have two tables, Table A contains the actual items that I care to get out, and Table B is used for language translations.
So, for example, Table A contains the actual content. Anytime text is used within the table, instead of storing actual varchar values, ids are stored that relate back to text stored in Table B. This allows me to by adding a languageID column to Table B, have multiple translations for the same row in the database.
Example:
Table A
- Title (int)
- Description (int)
- Other Data....
Table B
- TextID (int) - This is the column whose value is stored in other tables
- LanguageID (int)
- Text (varchar)
My question is more a call for suggestions on how to best handle this. Ideally I want a query that I can use to select from the table, and get the text as opposed to the ids of the text out of the table. Currently when I have two text items in the table this is what I do:
SELECT C.ID, C.Title, D.Text AS Description
FROM
(SELECT A.ID, A.Description, B.Text AS Title
FROM TableA A, TranslationsTable B
WHERE A.Title = B.TextID AND B.LanguaugeID = 1) C
LEFT JOIN TranslationsTable D
ON C.Description = D.TextID AND D.LanguaugeID = 1
This query gives me the row from Table A I am looking for (using where statements in the inner select statement) with the actual text based on the language ID used instead of the text ids.
This works fine when I am only using one or two text items that need to be translated, but adding a third item or more, it starts to get really messy - essentially another left join on top of the example.
Any suggestions on a better query, or at least a good way to handle 3 or more text items in a single row?
© Stack Overflow or respective owner