Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Generate N sequential numbers (fast)

    For a limited number of rows (< 100) using a recursive common table expression is an alternative:

    DECLARE @lowerbound int

    DECLARE @increment int

    DECLARE @upperbound int

    SET @lowerbound = -5

    SET @upperbound =...

Viewing post 1 (of 1 total)