次のような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はあなたが探しているものを表示するはずです。
—
Jonathan Fite、2016