Convert column to row without using unpivot operator bysantosh •May 09, 2015 In this post, I will show you how to convert column to row in SQL. For this post, I am going to use the following table which has three column stu_name,sibject and marks SELECT stu_name , MAX ( CASE WHEN subjec…