Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: Advanced XML Processing

    I found article very usefull. Thank you.

  • RE: How do you write a top without top

    Hello, this problem I would within stored procedure using intermediate table.

    For example:

    declare @t table(MyID int identity(1,1),

    CategoryID int,

    CategoryName varchar(50)

    )

    declare @top int

    set @top = 2

    insert @t

    select CategoryID, CategoryName

    from Categories

    order by CategoryName DESC

    select...

Viewing 2 posts - 1 through 2 (of 2 total)