TSQL Challenge 15 - Solution by Joe Jameson



-- File Name: Joe_Jameson_tsqlchallenge_15.sql
SELECT Row AS 'col'
	, [1], [2], [3], [4], [5], [6], [7], [8], [9]
FROM (
	SELECT Row, Col, CASE WHEN (row%col)=0 THEN 'x' ELSE '' END x
	from @Rows
	CROSS JOIN @Cols
) p PIVOT (
	MAX(x) FOR Col IN ( [1], [2], [3], [4], [5], [6], [7], [8], [9] )
) AS pvt

Did you find something incorrect/wrong with this solution? Take a few seconds to Report It.

Did you understand how this solution work? If you find it difficult to understand, you can Request an Explanation or you can Write an explanation to help others better understand this solution.