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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T18:08:54+00:00 2026-05-29T18:08:54+00:00

I have a table as follows id comm_id user_id .. This stores user subscriptions

  • 0

I have a table as follows

id comm_id user_id ..

This stores user subscriptions to communities. Now I want to query this table so that only those subscriptions are fetched which are mutual between 2 users(say user_id: 2 and 9)

Give me the sql query
tablename: db_community_subscribers
id, community_id, user_id

"20"      1         "2"
"28",  NULL         "2"
"31"   NULL,        "2"
"43",   4           "2"
"47     1             9
"57",   NULL,       "2"
"59",   "12",      "9"
"60     14          2
"62",  NULL         2

These are the subscriptions of users 2 and 9

I want to select only 1 and 12 since these are the common subscriptions

  • 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-29T18:08:56+00:00Added an answer on May 29, 2026 at 6:08 pm

    try this one:

    I think this will work now:

    SELECT Comm_ID
    FROM tableNAme
    WHERE  user_id IN (2,9)
    GROUP BY Comm_ID
    HAVING COUNT(Comm_ID) > 1
    

    OR

    SELECT DISTINCT d.Comm_ID
    FROM
        (SELECT Comm_ID
        FROM tableNAme
        WHERE user_id in (1,2)) d
    GROUP BY d.Comm_ID
    HAVING COUNT(d.Comm_ID) > 1
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The architecture for this scenario is as follows: I have a table of items
I have a table that displays months(Jan through Dec) in a table as follows.
I have a table structure as follows and I want to select all active
I have a table structure as follows. Now I need to sort these nested
Suppose I have a table as follows in MySQL: create table user(name varchar(20), join_time
Fellow Query Writers, I have a table as follows: myTable t1 col2 col3 2
I have a table with a current structure as follows: Currently this is populated
I have a table as follows > RowID SessionID EventID RequestedURL Date > 1
I have a table like as follows: SoftwareName Count Country Project 15 Canada Visio
I have a table set up as follows id origin destination carrier_id so typical

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.