ワークベンチでスクリプトを開こうとしていますが、キーワード PIVOT に赤い下線が引かれ、次のようなエラー メッセージが表示されます。脚本:
select * from
(select c1.id, a.num0,a.num1 from table1 c1
Inner Join
(select c2.id, if(team=1,1,0) as num0, if(team=2,1,0)as num1 from table1 c2,table2 r2
where c2.q_id = 2046 and r2.q_id = 2046 group by c2.d)a on a.id = c1.id) pvt
PIVOT(
For content
IN([team1],[team2]))pvt2