我有一个这样的MySQL表:
User_Id course_name course_location course_id
1 course name 1 location 1 1
1 course name 2 location 2 2
1 course name 3 location 1 3
2 course name 2 location 1 2
2 course name 4 location 4 4
我怎样才能得到这样的结果数据:
User_id course 1 course2 course3 course4
1 yes-location1 yes-location2 yes-location1 NULL
2 NULL yes-location1 NULL yes-location4
1
您正在使用哪个版本的MySQL?您想要的被称为数据透视,这里的这个答案stackoverflow.com/questions/7674786/mysql-pivot-table应该告诉您您正在寻找什么。
—
乔纳森·费特