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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T22:56:01+00:00 2026-05-23T22:56:01+00:00

I have a small database in Access that works well except for the following

  • 0

I have a small database in Access that works well except for the following problem. The database is designed correctly and any the other 100 queries I have work fine. I’m trying to find the correct SQL to return the correct records. There definitely are records that match the (((tblComorbidity.comorbidityexplanation)=”infection” And (tblComorbidity.comorbidityexplanation)=”pressure sores”)); part, but for some reason it returns nothing. Any suggestions? Thanks

    SELECT DISTINCT Person.PersonID, tblComorbidity.comorbidityexplanation
    FROM 
tblKentuckyCounties INNER JOIN 
(tblComorbidity INNER JOIN (Person INNER JOIN tblComorbidityPerson ON Person.PersonID = tblComorbidityPerson.personID) ON tblComorbidity.ID = tblComorbidityPerson.comorbidityFK) ON tblKentuckyCounties.ID = Person.County
    WHERE 
(((tblComorbidity.comorbidityexplanation)="infection" And (tblComorbidity.comorbidityexplanation)="pressure sores"));
  • 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-23T22:56:02+00:00Added an answer on May 23, 2026 at 10:56 pm

    Your SQL is trying to get all tblComorbidity records that have an explanation of “infection” AND “pressure sores”. That’s not possible, since ONE tblComorbidity record has only ONE explanation.

    What (I guess that) you really want is to get all Persons for which ONE tblComorbidity record with explanation = “infection” exists and ANOTHER tblComorbidity record with explanation = “pressure sores” exists. That sounds similar, but it’s something different, and it needs to be done differently.

    Something like the following SQL should do what you want:

    SELECT DISTINCT Person.PersonID
      FROM ((((Person INNER JOIN tblComorbidityPerson AS InfPers ON Person.PersonID = InfPers.PersonID)
              INNER JOIN tblComorbidity AS Inf ON InfPers.comorbidityFK = Inf.ID)
             INNER JOIN  tblComorbidityPerson AS SorePers ON Person.PersonID = SorePers.PersonID)
            INNER JOIN tblComorbidity AS Sore ON SorePers.comorbidityFK = Sore.ID)
           INNER JOIN tblKentuckyCounties ON tblKentuckyCounties.ID = Person.County
     WHERE Inf.comorbidityexplanation = "infection"
       AND Sore.comorbidityexplanation = "pressure sores";
    

    Basically, you need to join comorbidity twice (once for each explanation).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a fairly small MySQL database (a Textpattern install) on a server that
Hi I have a small problem. I am coding a program that displays the
I have inherited a Access database that has a query that SELECTs over 50
I have a small problem, looked here & other forums, but could not find
I have small database of business and their addresses. Using the Google Geocode API
I have a small database and have been adding entries through a Rails page.
I have a small database with tables containing a small amount of data which
I have a small image from a database and the image's average color need
I have a fairly small corpus of structured records sitting in a database. Given
I have a database full of small HTML documents and I need to programmatically

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.