sql

Convert column to row without using unpivot operator

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…

Load More
That is All