In my old Stored Proceder result returned in form of counts . it returned as below. Result is correct but now I want this row result in form of table. Please look into this and help me.
Result in form of Row:
SELECT 100 AS A ,200 AS B ,300 AS C
Required Result in form of column:
TextKey | TextValue
---------------------
A 100
B 200
C 300
Thanks in Advance.