我需要顯示存儲在MySQL數據庫表中的數據的彙總MySQL查詢顯示行數據爲列
control_point_run
run_date control_point duration
10/10/2016 A 100
10/10/2016 B 200
10/10/2016 C 150
10/11/2016 A 160
10/11/2016 B 220
10/11/2016 C 180
10/12/2016 A 200
10/12/2016 B 120
10/12/2016 C 180
預期輸出
run_date A B C
10/10/2016 100 200 150
10/11/2016 160 220 180
10/12/2016 200 120 180
Requirement image 請幫我用MySQL查詢來獲得預期的結果。我不知道如何將行數據轉換爲列標題[A,B,C]。
請注意,需要的列名(A,B,C)需要根據可用數據自動生成。該表中包含的數據比此示例中的數據更多,並且未來還可以插入更多的control_point值。
你試過谷歌? – Prasad