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 a.id
from (select top 100 percent (SELECT COUNT(*)
FROM TableA b
WHERE b.Id <= a.id) rownum,
Id,
Name
FROM TableA
ORDER BY Id) a
where a.rownum between 5001 and 10000