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, Name varchar(10))
insert into #Test values (1, 'Test')
insert into #Test values (2, 'Test1')
insert into #Test values (3, 'Test2')
insert into #Test values (4, 'Test3')
insert into #Test values (5, 'Test4')
select top 3
id,
name
from #Test a
order by id
select id,
name
from #Test a
where (select count(*)
from #Test b
where b.id <= a.id) > 3
select *
from myTable
where primarykey not in
( select top 5 primarykey
from myTable
order by something
)
order by something