Introduction
Sample Table
A pivot table is a regularly used technique of shortening and displaying particular report information by means of consortium and aggregating values. Pivot tables are easily shaped by office users using Microsoft Excel or MS Access. Sincepivot table enables information builders and BI (Business Intelligence) specialists authorize their appearance of information and amplify the visibility andunderstandabilityof mined information, pivot tables are widespread and favored widely. Pivot tables exhibit information in tabular form. The pivot table formatting is not dissimilar than a tabular report formatting. But the tuples are produced by the statement information itself.
In this example i am using a temp table.
Sample Table
CREATE TABLE #Product(Cust VARCHAR(25), Product VARCHAR(20), QTY INT) INSERT INTO #Product(Cust, Product, QTY) VALUES('KATE','VEG',2) INSERT INTO #Product(Cust, Product, QTY) VALUES('KATE','SODA',6) INSERT INTO #Product(Cust, Product, QTY) VALUES('KATE','MILK',1) INSERT INTO #Product(Cust, Product, QTY) VALUES('KATE','BEER',12) INSERT INTO #Product(Cust, Product, QTY) VALUES('FRED','MILK',3) INSERT INTO #Product(Cust, Product, QTY) VALUES('FRED','BEER',24) INSERT INTO #Product(Cust, Product, QTY) VALUES('KATE','VEG',3) Select * from #Product order by Cust
Cust Product QTY
------------------------- -------------------- -----------
FRED MILK 3
FRED BEER 24
KATE VEG 3
KATE VEG 2
KATE SODA 6
KATE MILK 1
KATE BEER 12
(7 row(s) affected)
SELECT CUST, VEG, SODA, MILK, BEER, CHIPS FROM ( SELECT CUST, PRODUCT, QTY FROM #Product) up PIVOT ( SUM(QTY) FOR PRODUCT IN (VEG, SODA, MILK, BEER, CHIPS) ) AS pvt ORDER BY CUST
CUST VEG SODA MILK BEER CHIPS --------- ----------- ----------- ----------- ----------- ----------- --------- FRED NULL NULL 3 24 NULL KATE 5 6 1 12 NULL (2 row(s) affected)
Pivot table based on product field
SELECT PRODUCT, FRED, KATE FROM ( SELECT CUST, PRODUCT, QTY FROM #Product) up PIVOT (SUM(QTY) FOR CUST IN (FRED, KATE)) AS pvt ORDER BY PRODUCT
PRODUCT FRED KATE
-------------------- ----------- -----------
BEER 24 12
MILK 3 1
SODA NULL 6
VEG NULL 5
(4 row(s) affected)