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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T13:12:03+00:00 2026-06-15T13:12:03+00:00

I have some tables in MySQL: +———+————–+———+ +———+———-+ | TABLE 1 | | TABLE

  • 0

I have some tables in MySQL:

+---------+--------------+---------+    +---------+----------+
|             TABLE 1              |    |       TABLE 2      |
+---------+--------------+---------+    +---------+----------+
| id_user |  testnumber1 |   score |    | id_user | username |
+---------+--------------+---------+    +---------+----------+
|    1    |       1      |    90   |    |    1    |   aaa    |
|    1    |       2      |    80   |    |    2    |   bbb    |
|    1    |       3      |    70   |    |    3    |   ccc    |
|    2    |       1      |    60   |    +---------+----------+
|    2    |       2      |    66   |
|    2    |       3      |    77   |
|    3    |       1      |    90   |
|    3    |       2      |    80   |
|    3    |       3      |    70   |
+---------+--------------+---------+

Is it possible to get this:

+---------+--------------+--------------+--------------+
|                      TABLE RESULT                    |
+---------+--------------+--------------+--------------+ 
| id_user |  testnumber1 |  testnumber2 |  testnumber3 |
+---------+--------------+--------------+--------------+
|    1    |      90      |      80      |      70      |
|    2    |      60      |      66      |      77      |
|    3    |      90      |      80      |      70      |
+---------+--------------+--------------+--------------+

?

What statement can I use to get this result?

  • 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-15T13:12:04+00:00Added an answer on June 15, 2026 at 1:12 pm

    What you need is to PIVOT the columns into rows. Unfortunately, MySQL has no PIVOT table operator. But you can use the CASE expression to do this, like so:

    SELECT
      id_user,
      MAX(CASE WHEN  testnumber1 = 1 THEN score END) AS testnumber1,
      MAX(CASE WHEN  testnumber1 = 2 THEN score END) AS testnumber2,
      MAX(CASE WHEN  testnumber1 = 3 THEN score END) AS testnumber3
    FROM Table
    GROUP BY id_user;
    

    SQL Fiddle Demo

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

Sidebar

Related Questions

Greetings, I have some mysql tables that are currently using an md5 hash as
I'm using MySQL 4.1. Some tables have duplicates entries that go against the constraints.
I have a table which already contains an index in MySQL. I added some
I have some tables that benefit from many-to-many tables. For example the team table.
I have some large MySQL production tables that I need to dump so that
Using MySQL Administrator GUI tool I have exported some data tables retrieved from an
I am using some MySQL tables. Their structures are listed below. login: loginid username
I have some relational MySQL database with dozens of tables... My query is 1000
I'm trying to speed up SELECT queries in MySQL tables which already have some
I have a MySQL database with two tables (simplified for this question): movies table

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.