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 3345750
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T01:13:21+00:00 2026-05-18T01:13:21+00:00

I have 2 tables. The first table is a list of customers. The second

  • 0

I have 2 tables. The first table is a list of customers.

The second table is a list of equipment that those customers own with another field with some data on that customer (customer issue). The problem is that for each customer, there may be multiple issues.

I need to do a join on these tables but only return results of customers having two of these issues.

The trouble is, if I do a join with OR, I get results including customers with only one of these issues.

If I do AND, I don’t get any results because each row only includes one condition.

How can I do this in T-SQL 2008?

  • 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-18T01:13:21+00:00Added an answer on May 18, 2026 at 1:13 am

    Unless I’ve misunderstood, I think you want something like this (if you’re only interested in customers that have 2 specific issues):

    SELECT c.*
    FROM Customer c
        INNER JOIN CustomerEquipment e1 ON c.CustomerId = e1.CustomerId AND e1.Issue = 'Issue 1'
        INNER JOIN CustomerEquipment e2 ON c.CustomerId = e2.CustomerId AND e2.Issue = 'Issue 2'
    

    Or, to find any customers that have multiple issues regardless of type:

    ;WITH Issues AS
    (
        SELECT CustomerId, COUNT(*)
        FROM CustomerEquipment
        GROUP BY CustomerId
        HAVING COUNT(*) > 1
    )
    
    SELECT c.*
    FROM Customer c
        JOIN Issues i ON c.CustomerId = i.CustomerId
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have 2 tables. The first table holds lots of user data. The second
I have 2 tables, let says the first table named Schedule and the second
Let's say I have 2 tables. The first table is a list of personas.
Lets say that I have two tables. The first is: table lists, with list_id
I have 2 tables First table - Event Second table - Category @Entity public
I have tables linked by FK, I query on the first table using entity
i have 3 Tables is my SQL Database: First Table: Room: ID <pk>, Roomname
I have two tables. The first table has a column with a lot of
I have 2 tables which I want to query from. The first table (lets
I have a database framework where I have two tables. The first table has

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.