Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Get month names ordered using recursion

    Something like this might help

    declare @t table(c varchar(21))

    insert @t (c)

    select 'October' union select 'December' union select 'November' union select 'September' union

    select 'May' union select 'June' union select 'July' union...

Viewing post 1 (of 1 total)