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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T02:22:20+00:00 2026-05-28T02:22:20+00:00

I have two tables: t1 ____________ projectID userID projectExpiration t2 ____________ usrID subscriptioID subscriptionExpiration

  • 0

I have two tables:

t1
____________
projectID
userID
projectExpiration

t2
____________
usrID
subscriptioID
subscriptionExpiration

I need to select porject ID from T1 where the following conditions are met:

t1.projectExpiration = older then 3 months
t2.subscriptioID = '5'
t2.expiration = older then 3 months

The user may have other subscriptions in t2. I need ONLY the results where they have a single subscription entry which has an ID of ‘5’

I need help putting it all together.

Here’s what I’ve got so far:

SELECT projectID
FROM t1
LEFT JOIN t2 ON (t1.userID = t2.userID)
WHERE t1.projectExpiration < (CURDATE() - INTERVAL 3 MONTH)
  AND t2.subscriptionExpiration = 5
      AND t2.subscriptionExpiration < (CURDATE() - INTERVAL 3 MONTH)

Feel like I’m stuck…

  • 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-28T02:22:21+00:00Added an answer on May 28, 2026 at 2:22 am

    You want a not exists check to make sure 5 is the only row:

    select
        *
    from
        t1 x
        inner join t2 y on
            x.userid = y.userid
    where
        x.projectexpiration < curdate() - interval 3 month
        and y.subscriptionid = 5
        and not exists (
            select
                1
            from
                t2 z
            where
                z.userid = x.userid
                and z.subscriptionid <> 5
        )
    

    I should also mention that I used an inner join in lieu of a left join here. This is because you don’t want to grab rows where a t2 row doesn’t exist (you’re otherwise not accounting for nulls in your where clause). So, it’s just needless overhead. An inner join gets us down to the result set you want in a much clearer fashion.

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

Sidebar

Related Questions

I have two tables and need to retrieve some columns from both tables based
I have two tables as follows: tblCountry (countryID, countryCode) tblProjectCountry(ProjectID, countryID) The tblCountry table
I have two tables, both with start time and end time fields. I need
I have two tables, as per following example, in an MSSQL db. PROJECT id
I have two fields (project and version) from two different tables, and I am
I have two tables: entitytype and project . Here are the create table statements:
OK, so I have two tables I'm working with - project and service ,
I'm designing a project for quizzes and quizz results. So I have two tables:
I have two tables that are joined together. A has many B Normally you
I have two tables, Book and Tag , and books are tagged using the

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.