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

  • Home
  • SEARCH
  • 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 742437
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T08:44:53+00:00 2026-05-14T08:44:53+00:00

I apologize for the vague title. I am attempting to write a query that

  • 0

I apologize for the vague title. I am attempting to write a query that returns an alias column with matching values (resulting from an IN) as well as an alias column with values that do not match (using NOT IN). I want the result set to have: userId | matches | nonmatches. I currently have the following query which returns the matches as expected. I am having trouble getting the nonmatches in the result set — that is, from a NOT IN statement

SET @userId = 9;
SELECT ug.user_id, COUNT(DISTINCT goal_id) as matches
FROM user_goal ug
WHERE ug.user_id!=@userId
AND goal_id IN (SELECT iug.goal_id FROM user_goal iug WHERE user_id=@userId)
GROUP BY user_id ORDER BY matches DESC LIMIT 4

So, the NOT IN would look something like this:

goal_id NOT IN(SELECT uggg.goal_id FROM user_goal uggg WHERE user_id=@userId) AS nonmatches

I am just not sure how to incorporate the NOT IN statement in my query so I get all the results

  • 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-14T08:44:53+00:00Added an answer on May 14, 2026 at 8:44 am

    Try this (could be simplified and further optimized if mysql have CTE though):

    select u.user_id, the_matches.matches, the_nonmatches.nonmatches
    from user u 
    left join 
    (    
        SELECT ug.user_id, COUNT(DISTINCT goal_id) as matches
        FROM user_goal ug
        WHERE ug.user_id!=@userId
        AND goal_id IN (SELECT iug.goal_id FROM user_goal iug WHERE user_id=@userId)
        GROUP BY user_id 
        ORDER BY matches DESC LIMIT 4
    ) as the_matches on the_matches.user_id = u.user_id
    left join
    (
        SELECT ug.user_id, COUNT(DISTINCT goal_id) as nonmatches
        FROM user_goal ug
        WHERE ug.user_id!=@userId
        AND goal_id NOT IN(SELECT uggg.goal_id FROM user_goal uggg WHERE user_id=@userId) 
        GROUP BY user_id 
    ) as the_nonmatches on the_nonmatches.user_id = u.user_id
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I apologize for asking such a generalized question, but it's something that can prove
I apologize for the terrible title...it can be hard to try to summarize an
First I'll apologize for the unclear title of my question. I wasn't sure how
Firstly, apologies for the vague title, but I'm not sure exactly what I'm asking
What I'm trying to do is get 3 values from a key into separate
I apologize if this is slightly off-topic. I'm hoping to find a software-as-a-service CRM
I apologize in advance if this question seems remedial. Which would be considered more
I apologize in advance for the long post... I used to be able to
I apologize profusely for the incredibly newbish question I'm about to ask, but for
Let me apologize in advance for the simplicity of this question (I heard Jeff's

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.