Technical Article

Counting

,

This is a quick script I use to quickly build a tally table. If you need more numbers, you can add more joins to the Tally CTE.

with cteTens(n)
as
( select n
 from (values (1), (2), (3), (4), (5), (6), (7), (8), (9), (0)
) a(n)
)
, cteHundreds (n)
as
(
select a.n from cteTens a, cteTens b
)
, cteTally (n)
as
(
select n = row_number() over (order by (select null))
 from cteHundreds a, cteHundreds b
)
select n
 from cteTally

Rate

3.33 (3)

You rated this post out of 5. Change rating

Share

Share

Rate

3.33 (3)

You rated this post out of 5. Change rating