Menu

How to switch rows and columns in SQL?

How to switch rows and columns in SQL? Let's transpose so the rows become columns and columns as rows.

Written by Selva Prabhakaran | 2 min read

Problem

How to switch rows and columns in SQL so that the rows and columns are interchanged?

Given a table named Students with columns Name, Math, and Science representing student names and their scores in Math and Science. We want to transpose this table such that subjects become rows and student names become columns with their respective scores under them.

Input

idattributevalue
1Height175
2Weight70
3Age30

Try Hands-Om: Fiddle

Create Input Table: Gist

Desired Output

This result represents the switched rows and columns, where the attributes (‘Height’, ‘Weight’, ‘Age’) are now columns, and their corresponding values are in the same row.

HeightWeightAge
1757030

Solution:

sql
    CREATE TEMPORARY TABLE switched_table AS
    SELECT
        MAX(CASE WHEN attribute = 'Height' THEN value END) AS "Height",
        MAX(CASE WHEN attribute = 'Weight' THEN value END) AS "Weight",
        MAX(CASE WHEN attribute = 'Age' THEN value END) AS "Age"
    FROM original_table;

Explanation:

The above query creates a temporary table named switched_table and uses conditional aggregation to switch the rows and columns from the original_table.

It creates columns for each unique value in the attribute column (in this example, ‘Height’, ‘Weight’, and ‘Age’) and pivots the data accordingly. The MAX function is used to aggregate the data for each column.

  1. SQL for Data Science – Level 1
  2. SQL for Data Science – Level 2
  3. SQL for Data Science – Level 3
  1. Introduction to SQL
  2. SQL Window Functons – Made Simple and Easy
  3. SQL Subquery

More SQL Questions

  1. How to select only rows with max value on a column?
  2. How to transpose columns to rows in SQL?
  3. How to select first row in each GROUP BY group?
  4. How to retrieve the last record in each group in SQL?
Free Course
Master Core Python — Your First Step into AI/ML

Build a strong Python foundation with hands-on exercises designed for aspiring Data Scientists and AI/ML Engineers.

Start Free Course
Trusted by 50,000+ learners
Related Course
Master SQL — Hands-On
Join 5,000+ students at edu.machinelearningplus.com
Explore Course
Machine Learning Plus
MachineLearningPlus Expert AI/ML Training

Get a Free 30-Min
Guidance Call

Let our ML expert call you back and guide you for free

You're all set!
Tired of tutorials that go nowhere? This video shows you why and what to do instead.
Watch the Free Training
Redirecting in 5 seconds...
No thanks, I'll figure it out myself

Get your Start in AI/ML with the Foundations for Data Science (AI/ML) Course

Enroll for Free
Scroll to Top
Scroll to Top
Course Preview

Machine Learning A-Z™: Hands-On Python & R In Data Science

Free Sample Videos:

Machine Learning A-Z™: Hands-On Python & R In Data Science

Machine Learning A-Z™: Hands-On Python & R In Data Science

Machine Learning A-Z™: Hands-On Python & R In Data Science

Machine Learning A-Z™: Hands-On Python & R In Data Science

Machine Learning A-Z™: Hands-On Python & R In Data Science