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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T19:42:03+00:00 2026-06-07T19:42:03+00:00

I need to return values that appear across two or more queries from the

  • 0

I need to return values that appear across two or more queries from the same table. Feeling a bit like a noob here but just can’t see the wood for the trees.

I have a table of users assigned to different groups. I need to return only the users that appear in all of the requested groups:

User   Group
frank  1
Jane   2
Tom    2
frank  2
Jane   1
Tom    3

This is want I need to output:

Result for Group 1 & 2:
frank
Jane

Result for Group 2 & 3:
Jane
Tom

Seems a very 101 question, but grateful for any pointers.

  • 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-06-07T19:42:06+00:00Added an answer on June 7, 2026 at 7:42 pm
    select user
    from users
    where group_id in (1,2)
    group by user
    having count(*) = 2;
    

    You need to adjust the having count(*) = 2 condition to the number of groups that you want.

    If a user can be assigned to the same group more than once, then Madhivanan’s comment need to be taken into account:

    select user
    from users
    where group_id in (1,2)
    group by user
    having count(distinct group_id) = 2;
    

    (I used the column name group_id because group is a reserved word and should be used as a column name).

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

Sidebar

Related Questions

I have a function that returns two values in a list. Both values need
I need to return multiple values from a ColdFusion function in an ajax callback
I need to return two values at a time, so I have: class IterableObject(object):
i have four queries that return intergers. select listOfIntegers from [something]... ( edit: the
I need an xpath expression that would return the value of I need to
I need my buttons to return their column and row values when clicked. I've
From the isset() docs : isset() will return FALSE if testing a variable that
I have two queries. The first query: select in_gentime from in_time_temp where cardnumber =
basically need to change the value that - admin_url() returns any idea?
I need a function that returns the ASCII value of a character, including spaces,

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.