Read our blogs, tips and tutorials
Try our exercises or test your skills
Watch our tutorial videos or shorts
Take a self-paced course
Read our recent newsletters
License our courseware
Book expert consultancy
Buy our publications
Get help in using our site
547 attributed reviews in the last 3 years
Refreshingly small course sizes
Outstandingly good courseware
Whizzy online classrooms
Wise Owl trainers only (no freelancers)
Almost no cancellations
We have genuine integrity
We invoice after training
Review 30+ years of Wise Owl
View our top 100 clients
Search our website
We also send out useful tips in a monthly email newsletter ...
Written by Andrew Gould
In this tutorial
Perhaps the biggest limitation of the PIVOT operator is that you must explicitly list each column name that you want to create. Not only is this is immensely tedious when you have a large number of columns, you may not actually know what the column names will be. The solution is to create a dynamic pivot table using dynamic SQL.
Start by creating a simple query to display all of the values that you want to become column headings in the final pivot table. In our example we'll select all of the country names using this statement:
SELECT CountryName
FROM tblCountry
The result of the query is shown below:
Your query may be more complex than the one shown above: the aim is to create a list of all column names for the final pivot table.
The next step is to create a comma-separated string of the values from the query results. The code below shows how to do this:
--A variable to hold the complete string
DECLARE @Columns VARCHAR(MAX) = ''
--Concatenate each country with a comma
SELECT @Columns += (CountryName + ',')
FROM tblCountry
--Check the result
PRINT @Columns
The result of executing this code is shown below:
The result is a comma-separated list of country names.
Each column name needs to be enclosed in a set of square brackets. We can achieve this by using the QUOTENAME function:
--A variable to hold the complete string
DECLARE @Columns VARCHAR(MAX) = ''
--Concatenate each country with a comma
--The QUOTENAME function adds square brackets around each value
SELECT @Columns += (QUOTENAME(CountryName) + ',')
FROM tblCountry
--Check the result
PRINT @Columns
The new result of executing the code looks like this:
Each country name is enclosed in square brackets.
At this point our list of column names contains an extra comma at the end of the string. One way to remove this is shown below:
--A variable to hold the complete string
DECLARE @Columns VARCHAR(MAX) = ''
--Concatenate each country with a comma
--The QUOTENAME function adds square brackets around each value
SELECT @Columns += (QUOTENAME(CountryName) + ',')
FROM tblCountry
--Remove the trailing comma
SET @Columns = LEFT(@Columns, LEN(@Columns) - 1)
--Check the result
PRINT @Columns
The LEN function calculates the number of characters in the string. We subtract 1 from the result and use the LEFT function to return that number of characters from the left of the string.
The next step is to generate the complete SQL statement that will create the pivot table and store the result in a string variable.
--A variable to hold the SQL string
DECLARE @SQL NVARCHAR(MAX) = ''
--Store the complete string in the variable
--Concatenate the list of column names
SET @SQL =
'WITH BaseData AS
(
SELECT
CountryName
,FilmID
FROM
tblFilm AS f INNER JOIN
tblCountry AS c
ON c.CountryID=f.FilmCountryID
)
SELECT * FROM BaseData
PIVOT
(
COUNT(FilmID)
FOR CountryName IN (' + @Columns + ')
) AS PivotTable'
--Check the result
PRINT @SQL
Printing the result is a good way to check that you've generated a valid SQL statement:
The complete SQL statement.
The final step is to execute the dynamic SQL statement using either of the two techniques shown below:
--Execute the statement directly
EXECUTE (@SQL)
--Use a system stored procedure
EXECUTE sp_executesql @SQL
The final result should look like this:
A simple, dynamic pivot table.
From this point you can easily create more complex pivot tables by adding code to the dynamic SQL statement.
If you've enjoyed reading this blog, have a look at our SQL training page for much more information on how you can learn to write better SQL.
You can learn more about this topic on the following Wise Owl courses:
Kingsmoor House
Railway Street
GLOSSOP
SK13 2AA
Landmark Offices
99 Bishopsgate
LONDON
EC2M 3XD
Holiday Inn
25 Aytoun Street
MANCHESTER
M1 3AE
© Wise Owl Business Solutions Ltd 2024. All Rights Reserved.