• + 0 comments
    declare @r int;`
    set @r= 0;
    while (@r<=20)
    begin
    select REPLICATE('*'+char(9),@r);
    set @r=@r+1
    end;