SQL query to join several columns - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T13:04:34Zhttp://stackoverflow.com/feeds/question/878376http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/878376/sql-query-to-join-several-columns3SQL query to join several columnsgeocoin2009-05-18T15:42:48Z2009-05-18T16:04:06Z
<p>I'm trying to join some data together from 2 tables, but on several columns. here's an example:</p>
<blockquote>
<p><strong>Source</strong> table</p>
<p>ID | Desc| AAAA| BBBB|</p>
<p><strong>Table2</strong> table</p>
<p>ID | Text| ID1 | ID2 | ID3 |</p>
</blockquote>
<p>where ID1, ID2 and ID3 in <strong>Table2</strong> are ID's from the <strong>Source</strong> table</p>
<p>I'd like to do a query which yields the results:</p>
<pre><code>Table2.Text,
Source.Desc(ID1),
Source.AAAA(ID1),
Source.Desc(ID2),
Source.AAAA(ID2),
Source.Desc(ID3),
Source.AAAA(ID3)
</code></pre>
<p>I'd guess this would be a join, but i can't get the syntax right... or would I be better off with a Union?</p>
http://stackoverflow.com/questions/878376/sql-query-to-join-several-columns/878397#8783971Answer by Stijn Sanders for SQL query to join several columnsStijn Sanders2009-05-18T15:47:41Z2009-05-18T15:47:41Z<p>Three joins should do the trick:</p>
<pre><code>select A.*, coalesce(B1.Text,B2.Text,B3.Text,'') as Text
from Source A
inner join Table2 B1 on B1.ID1=A.ID
inner join Table2 B2 on B2.ID2=A.ID
inner join Table2 B3 on B3.ID3=A.ID
</code></pre>
http://stackoverflow.com/questions/878376/sql-query-to-join-several-columns/878398#8783986Answer by Scott Anderson for SQL query to join several columnsScott Anderson2009-05-18T15:47:47Z2009-05-18T15:47:47Z<p>You could just use multiple joins, couldn't you? For example:</p>
<pre><code>SELECT tb.Desc, s1.Desc, s1.AAAAA, s2.Desc, s2.AAAAA, s3.Desc, s3.AAAA
FROM Table2 tb
INNER JOIN Source s1 ON tb.ID1 = s1.ID
INNER JOIN Source s2 ON tb.ID2 = s2.ID
INNER JOIN Source s3 ON tb.ID3 = s2.ID
</code></pre>
http://stackoverflow.com/questions/878376/sql-query-to-join-several-columns/878404#8784044Answer by HLGEM for SQL query to join several columnsHLGEM2009-05-18T15:48:53Z2009-05-18T15:48:53Z<p>You need to join to the source table three times, one for each ID. You could also try a unuion to see which performs better.</p>
<p>This is a bad table design (it should be normalized) and I would suggest you change it now if at all possible. There shoudl bea related table with each id in a separate record, then you could join once and it would be much more efficient and far easier to write code against and you wouldn't have to change the table structure and allthe queries the day you need ID4.</p>
http://stackoverflow.com/questions/878376/sql-query-to-join-several-columns/878482#8784821Answer by KM for SQL query to join several columnsKM2009-05-18T16:04:06Z2009-05-18T16:04:06Z<p>If not all the Source tables are populated in the Table2, this will still give you partial results:</p>
<pre><code>SELECT
t.Desc, s1.Desc, s1.AAAAA, s2.Desc, s2.AAAAA, s3.Desc, s3.AAAA
FROM Table2 t
LEFT OUTER JOIN Source s1 ON t.ID1 = s1.ID
LEFT OUTER JOIN Source s2 ON t.ID2 = s2.ID
LEFT OUTER JOIN Source s3 ON t.ID3 = s2.ID
WHERE t.ID=@YourIDHere
</code></pre>