Menu

How to efficiently convert rows to columns in SQL?

Written by Selva Prabhakaran | 2 min read

Problem

Given a table, how to efficiently convert rows to columns?

So that, the records in a given row become column names and the values of the respective columns are taken from another column from the original table?

Input

employee_id skill_name skill_level
1 Java 4
1 SQL 3
1 Python 5
2 Java 3
2 SQL 4
3 Python 4
3 JavaScript 3

Try Hands-On: Fiddle

Create Input Table: Gist

Desired Output

employee_id Java Sequel Python JavaScript
1 4 3 5
2 3 4
3 4 3

Solution 1:

To efficiently convert rows to columns, we can use MySQL’s CASE statement along with the GROUP BY clause.

In this case, we’ll pivot the skill_name column into separate columns for each skill and display the corresponding skill level.

Using CASE WHEN

sql
    SELECT
        employee_id,
        MAX(CASE WHEN skill_name = 'Java' THEN skill_level END) AS Java,
        MAX(CASE WHEN skill_name = 'SQL' THEN skill_level END) AS Sequel,
        MAX(CASE WHEN skill_name = 'Python' THEN skill_level END) AS Python,
        MAX(CASE WHEN skill_name = 'JavaScript' THEN skill_level END) AS JavaScript
    FROM employee_skills
    GROUP BY employee_id;

Explanation:

We use the CASE statement to conditionally select the skill level for each skill name.

The GROUP BY clause groups the results by employee_id, ensuring that each employee gets a single row in the output.

We use MAX() to aggregate the skill levels for each skill. This is necessary because there may be multiple rows for the same skill for an employee, and we want to select the highest skill level.

  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 split values to multiple rows in SQL?
  2. How to transpose columns to rows in SQL?
  3. How to select first row in each GROUP BY group?
  4. How to get the rows which have the max value for a column for each group in another column
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
Get the full course,
completely free.
Join 57,000+ students learning Python, SQL & ML. One year of access, all resources included.
📚 10 Courses
🐍 Python & ML
🗄️ SQL
📦 Downloads
📅 1 Year Access
No thanks
🎓
Free AI/ML Starter Kit
Python · SQL · ML · 10 Courses · 57,000+ students
🎉   You're in! Check your inbox (or Promotions/Spam) for the access link.
⚡ Before you go

Python.
SQL. NumPy.
All free.

Get the exact 10-course programming foundation that Data Science professionals use.

🐍
Core Python — from first line to expert level
📈
NumPy & Pandas — the #1 libraries every DS job needs
🗃️
SQL Levels I–III — basics to Window Functions
📄
Real industry data — Jupyter notebooks included
R A M S K
57,000+ students
★★★★★ Rated 4.9/5
⚡ Before you go
Python. SQL.
All Free.
R A M S K
57,000+ students  ★★★★★ 4.9/5
Get Free Access Now
10 courses. Real projects. Zero cost. No credit card.
New learners enrolling right now
🔒 100% free ☕ No spam, ever ✓ Instant access
🚀
You're in!
Check your inbox for your access link.
(Check Promotions or Spam if you don't see it)
Or start your first course right now:
Start Free Course →
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