Viewing post 1 (of 1 total)
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 =...
June 13, 2013 at 12:56 am
#1623574