Gibra buongiorno e grazie.
Si, ci ho guardato ma, e ti prego di correggermi se sbaglio, ha come costante il numero di colonne.
cosa che io non ho, semplicemente perchè i giorni del mese variano (28, 30, 31).
nel link da te riportato, viene estratta questa select:
DaysToManufacture AverageCost
----------------- -----------
0 5.0885
1 223.88
2 359.1082
4 949.4105
che poi vuole
SELECT 'AverageCost' AS Cost_Sorted_By_Production_Days,
[0], [1], [2], [3], [4]
FROM
(SELECT DaysToManufacture, StandardCost
FROM Production.Product) AS SourceTable
PIVOT
(
AVG(StandardCost)
FOR DaysToManufacture IN ([0], [1], [2], [3], [4])
) AS PivotTable;
che riporta infatti 0-1-2-3-4
sto dicendo fesserie?