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.
declare @myArray table (id int , myValue char(10))
declare @cnt int
set @cnt = 0
while @cnt < 10
begin
set @cnt = @cnt + 1
insert into @myArray
values(@cnt, cast(@cnt as char(10)))
end
select * from @myArray