Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6646401
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T00:24:43+00:00 2026-05-26T00:24:43+00:00

I am using SSMS 2008. Should be a simple solution to this. I am

  • 0

I am using SSMS 2008. Should be a simple solution to this. I am trying to pull all records from table A, but only pull in matching records from tables B and C. The problem is that if I left join tables B and C, it returns records where all 3 of these tables intersect instead. Like if I query this combined merge, I get non-NULL values for every row for both B and C.

Here is my pseudocode:

SELECT A.ID, B.ID, C.ID
FROM A
LEFT JOIN B ON B.ID = A.ID
LEFT JOIN C ON C.ID = A.ID

In answer to your questions, I am sorry I forgot the “LEFT”, but I just added it above. If table A has 9 rows and B has 2 rows and C has 3 rows, then what I want to see above is where table A intersects B and where A intersects C.
So in the scenario just described, assuming that the Table B rows are all different than the Table C rows, then I want to see a total of 5 rows; 2 from B and 3 from C. Make sense?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T00:24:43+00:00Added an answer on May 26, 2026 at 12:24 am

    The ideal way to do this is with a LEFT JOIN. I believe (though it’s unclear from your question) that the problem you have is multiple rows per A.ID.

    If A.ID matches B.ID AND C.ID then you are getting two rows for this, and would like one consolidated row.

    I think maybe you had your JOIN conditions mixed up in your test query. This is working fine for me in testing. Try the below query:

    DECLARE @A TABLE (ID INT)
    DECLARE @B TABLE (ID INT)
    DECLARE @C TABLE (ID INT)
    
    INSERT INTO @A VALUES
    (1),
    (2),
    (3),
    (4)
    
    INSERT INTO @B VALUES
    (2),
    (3)
    
    INSERT INTO @C VALUES
    (3),
    (4)
    
    SELECT A.ID, B.ID, C.ID
    FROM @A A
    LEFT JOIN @B B
        ON B.ID = A.ID
    LEFT JOIN @C C
        ON C.ID = A.ID
    

    Output is:

    ID  ID      ID
    1   NULL    NULL
    2   2       NULL
    3   3       3
    4   NULL    4
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This should be really simple. I am using SSMS 2008, trying to get a
I am using SSMS 2008 and trying to use a HAVING statement. This should
I am using SSMS 2008 and trying to insert with this query but am
With SQL Server 2005 using SSMS, when I run this: SELECT * FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0','Excel
I am using SSMS 2008 and am looking for a way to replace records
I am using SSMS 2008 and am trying to write a trigger now to
I am using SSMS (SQL Server Management Studio 2008), but I am missing some
I am using SSMS 2008 and trying to concatenate one of the rows together
I am using SSMS 2008, trying to select just one row/client. I need to
I am using SSMS 2008 and am trying to select count of consumers who

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.