TSQL Challenge 15 - Solution by Hodin Matthieu



-- File Name: HODIN_Matthieu_tsqlchallenge_15.sql
select * 
from (
	select Row, col ,case when row%col =0 then 'x' else '' end as moduloResult
	from @rows
	cross join @cols
) as p PIVOT (
max(moduloResult)
for col 
	in ([1],[2],[3],[4],[5],[6],[7],[8],[9])
) as pvt
order by row

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.