Click here to Skip to main content
15,883,901 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
WITH    CTE
          AS ( SELECT   GETDATE() Today
               UNION ALL
               SELECT   DATEADD(mm, -1, today)
               FROM     CTE
               WHERE    MONTH(Today) > 1
             )
    SELECT  DATENAME(mm, today)
    FROM    CTE
    ORDER BY MONTH(today)



this query execute and it show month till today date in row wise
but i want column wise please can any one help me
Posted

1 solution

You need the PIVOT function ... see here for an example[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900