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.
select identity(int, 1, 1) as seq, dlnumber
into #blah
from myTable
order by dlnumber
option (maxdop 1)
-- get every 5th record
select A.*
from myTable A
inner join #blah B on A.dlnumber = B.dlnumber
where B.seq % 5 = 0
drop table #blah
select identity(int, 1, 1) as seq, SOS_TABLE.SID
into [!]#blah[/!]
from SOS_TABLE
order by SOS_TABLE.SID
option (maxdop 1)
select A.*
from SOS_TABLE A
inner join #blah B on [!]A.SID = B.SID[/!]
where B.seq % 5 = 0