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 table #TEST (ID int)
insert into #test
select 1
union select 2
union select 3
union select 4
union select 5
union select 6
union select 7
union select 8
union select 9
union select 10
select * from #TEST
where ID > ((select min(ID) from #TEST) + 1) and ID < (select max(ID) from #TEST)