how to convert multiple student enrollments to column by using sql?

104 Views Asked by At

I have an enrollment table like one student enrolled in multiple courses.

enter image description here

How can I convert courses in previous image into columns?

1

There are 1 best solutions below

0
On
select 
name,
email,
(case when course = 'course1' then course1 end) as course1,
(case when course = 'course2' then course2 end) as course2,
(case when course = 'course3' then course3 end) as course3
from enrollment
group by name, email