You are viewing a single comment's thread. Return to all comments →
MS SQL SERVER SOLUTION:
DECLARE @N INTEGER; SET @N = 1;
with Rec_CTE as (
select replicate('* ',@N) as R, @N as RW UNION ALL select replicate('* ',(RW+1)), RW+1 from Rec_CTE where RW<20
) select R from Rec_CTE;
Seems like cookies are disabled on this browser, please enable them to open this website
Draw The Triangle 2
You are viewing a single comment's thread. Return to all comments →
MS SQL SERVER SOLUTION:
DECLARE @N INTEGER; SET @N = 1;
with Rec_CTE as (
) select R from Rec_CTE;