Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
EBrusse
Frequent Visitor

SQL Join one column twice

Hello everyone!

 

My question is aimed at creating SQL code.

I have a table which contains 2 columns with different stockcodes for one product.

The description for this stockcode is stored in a different table.

I would like to create a dataset which displays the [Stockcode], the [DescriptionBasedOnCol1] and the [DescriptionBasedOnCol2].

This requires an SQL like:

SELECT
  a.Stockcode ,
  b.DescriptionBasedOnCol1 ,
  b.DescriptionBasedOnCol2 ,
FROM
 a
LEFT OUTER JOIN b ON a.Stockcode   = b.Stockcode

LEFT OUTER JOIN b ON a.Stockcode2 = b.Stockcode

 

Obviously this does not work. I want to know how to set this up!

Thanks in advance!

 

Erwin

1 ACCEPTED SOLUTION
Wendeley-North
Resolver I
Resolver I

Your description isn't exactly clear, but assuming you have Table 1 with columns [ProductName], [StockCode1], [StockCode2] and Table 2 with [StockCodeX], [Description]:

 

SELECT a.ProductName, a.StockCode1, b.Description AS Description1, c.Description AS Description2

FROM Table1 a

LEFT JOIN Table2 b ON a.StockCode1 = b.StockCodeX

LEFT JOIN Table2 c ON a.StockCode2 = c.StockCodeX

 

View solution in original post

2 REPLIES 2
Wendeley-North
Resolver I
Resolver I

Your description isn't exactly clear, but assuming you have Table 1 with columns [ProductName], [StockCode1], [StockCode2] and Table 2 with [StockCodeX], [Description]:

 

SELECT a.ProductName, a.StockCode1, b.Description AS Description1, c.Description AS Description2

FROM Table1 a

LEFT JOIN Table2 b ON a.StockCode1 = b.StockCodeX

LEFT JOIN Table2 c ON a.StockCode2 = c.StockCodeX

 

amitchandak
Super User
Super User

@EBrusse , Create a new column in a

key = [Stockcode] & "-" & [Stockcode2]

 

new column in b

key = [Stockcode] & "-" & [Stockcode]

 

Join on these columns 

 

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.