I want to display the columns in to rows format as below:
eg: col 1 clo 2
yes No
I want this to display as:
Column name
yes
no
The Code which i used as below:
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
GO
create PROCEDURE [dbo].[Vista_Capable]
AS
SET NOCOUNT ON;
BEGIN
Select 'Yes','No'
End