Jump to content

[SOLVED] Need SELECT statement: Table A has two fields which both link to Table B


GreenAlien

Recommended Posts

If I have the following two tables (simplified) where both Buyer and Recipient fields are Customer IDs.

 

Sales

- ID

- Buyer

- Recipient

- Product

 

Customers

- ID

- Name

 

How can I retrieve a recordset with fields: Buyer Name, Recipient Name, Product ?

 

I can include either Buyer name, or Recipient name, but not sure how to include both.

 

I could include the Buyer Name and Recipient ID then do another select to get the Recipient Name but there's got to be a more optimal way of doing it...

 

Anyone? Thanks.

 

PS: Having separate tables for buyer and recipient is not an option. There would be a load of redundant info if I did that (i missed out several fields).

Link to comment
Share on other sites

Try something like:

 

SELECT

              b.Name AS Buyer_Name, r.Name AS Recipient_Name, s.Product

  FROM

              Sales s

    JOIN

              Customers b

      ON

              b.ID = s.Buyer

    JOIN

              Customers r

      ON

              r.ID = s.Recipient

;

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.