Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
create procedure blah(@from smallint, @to smallint)
as
declare @t table(yr smallint)
while @from <=@to
begin
insert into @t values(@from)
set @from = @from + 1
end
select yr from @t order by yr
go
exec blah 2004, 2010