Can someone please help me on this SQL query? I have a simple table that i need to pivot dynamically. the table consists of 3 fields as below.
Table
Part_no
Forecast_date
Forecast_qty
I would like to pivot the table on forecast_date
so that I would see part_no
as a row, forecast_date
as the column heading and forecast_qty
showing for each part/date combination.
Is this possible?
[