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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T05:42:29+00:00 2026-06-12T05:42:29+00:00

I’m trying to JOIN/UNION/whatever data from two tables based on a third which maps

  • 0

I’m trying to JOIN/UNION/whatever data from two tables based on a third which maps them together. Here is the idea:

Table USERS contains user ID, username, some other data.
Table GROUPS contains group ID, group name, some other data.

Table USERGROUPMAP contains a bunch of user IDs and group IDs mapped together which correspond to IDs in USERS and GROUPS. Each user can be in multiple groups, each group can have multiple users.

I have always done this by storing objects or CSV data in a single field, e.g. making a column in groups called MEMBERS and storing id1,id2,id3…but this is what I was presented with.

I can’t change the schema…I know this has something to do with JOINs or UNIONs or something but my SQL is very rusty, so can anyone help out here?

My maybe semi-correct idea –

SELECT USERS.uid, 
       GROUPS.gid, 
       USERGROUPMAP.uid, 
       USERGROUPMAP.gid 
  FROM USERS, 
       GROUPS, 
       USERGROUPMAP 
  JOIN ON ((USERS.uid = USERGROUPMAP.uid) AND (GROUPS.gid = USERGROUPMAP.gid))

Any tips? 🙁 .. Thanks guys.

Edit, expected IO

USERS table contains a bunch of UIDs … 1,2,3,4,5, so on
GROUPS table contains a bunch of GIDs, 1000,1001,1002 and so on

USERGROUPMAP contains tuples corresponding to which users are in which groups, eg (1,1002) (2,1000) (5,1003) (5,1000)

I am trying to get a list of groups a user is in, so for this example I want to get two rows of 5,1003 and 5,1000 … make sense?

  • 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-12T05:42:30+00:00Added an answer on June 12, 2026 at 5:42 am
    Select a.userID, a.name, b.groupName
    from USERS a, GROUPS b, USERGROUPMAP c
    where c.userID = a.userID and 
    b.groupID = c.groupID and
    c.userID = <searchID>
    

    The userID you want to search is the searchID in the query. You can replace userID with groupID if you are listing users for a group.

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

Sidebar

Related Questions

I am trying to understand how to use SyndicationItem to display feed which is
I'm trying to select an H1 element which is the second-child in its group
I have a text area in my form which accepts all possible characters from
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
Basically, what I'm trying to create is a page of div tags, each has
link Im having trouble converting the html entites into html characters, (&# 8217;) i
For some reason, after submitting a string like this Jack’s Spindle from a text
Configuring TinyMCE to allow for tags, based on a customer requirement. My config is
I used javascript for loading a picture on my website depending on which small
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function

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.