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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T00:45:03+00:00 2026-06-10T00:45:03+00:00

I have 2 tables. The first table holds lots of user data. The second

  • 0

I have 2 tables. The first table holds lots of user data. The second table holds a list of classes, and if the positions have been filled.

I need to show the classes, with the user id and the user name.

I’ve tried doing “joins” – but the names seem to just overwrite each other, so I only get one name per row.

User table:

+----------+---------+
|  user_ID |  name   |
+----------+---------+
|        1 |   Smith | 
+----------+---------+
|        2 |   Jones |
+----------+---------+
|        3 |   Tim   |
+----------+---------+
etc

Class table:

+-------------+--------+--------+--------+---+---------+
|  class_date | Spot 1 | Spot 2 | Spot 3 | . | Spot 16 |
+-------------+--------+--------+--------+---+---------+
|  2012/1/1   |   1    |    4   |   8    | . |   5     |
+-------------+--------+--------+--------+---+---------+
|  2012/2/1   |   2    |  NULL  |   1    | . |   3     |
+-------------+--------+--------+--------+---+---------+
|  2012/3/1   |   3    |    7   | NULL   | . |  NULL   |
+-------------+--------+--------+--------+---+---------+

What I want to achieve:

+-------------+-------------+------------+--------------+---+------------+
|  class_date |   Spot 1    |   Spot 2   |    Spot 3    | . |  Spot 16   |
+-------------+-------------+------------+--------------+---+------------+
|  2012/1/1   |  1 - Smith  |  4 - Ben   |   8 - Drew   | . | 5 - Loz    |
+-------------+-------------+------------+--------------+---+------------+ 
|  2012/2/1   |  2 - Jones  |  NULL      |   1 - Smith  | . | 3 - Tim    |
+-------------+-------------+------------+--------------+---+------------+
|  2012/3/1   |  3 - Tim    |  7 - Dan   |   NULL       | . | NULL       |
+-------------+-------------+------------+--------------+---+------------+

Any help would be greatly appreciated

  • 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-10T00:45:04+00:00Added an answer on June 10, 2026 at 12:45 am

    You need to use LEFT JOIN for this. Try,

    SELECT  a.class_date,
            CONCAT(a.Spot1, ' - ', b.name) AS `SPOT 1`,
            CONCAT(a.Spot2, ' - ', c.name) AS `SPOT 2`,
            CONCAT(a.Spot3, ' - ', d.name) AS `SPOT 3`,
            ... -- keep doing until last column (i guess up to 16)
    FROM    ClassTable a
                LEFT JOIN `UserTable` b
                    ON a.Spot1 = b.user_ID
                LEFT JOIN `UserTable` c
                    ON a.Spot2 = c.user_ID
                LEFT JOIN `UserTable` d
                    ON a.Spot3 = d.user_ID
            ... ... -- keep doing until last column (i guess up to 16)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two tables. The first table holds simple user data and has the
I have two tables. The first Holds a list of classes with basically an
I have 2 tables - first table holds all unique data (columns: title, artist,
I have 2 tables, let says the first table named Schedule and the second
I have xpath page.search(//table[@class='campaign']//table) which returns two tables. I need to choose only first
I have a monthly table (only holds rows with first day of month, and
I have tables linked by FK, I query on the first table using entity
i have 3 Tables is my SQL Database: First Table: Room: ID <pk>, Roomname
I have two tables. The first table has a column with a lot of
I have 2 tables which I want to query from. The first table (lets

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.