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.
sorry, i don't do asp :-(r937 - I could do that, how would I do it in. asp?
SELECT *
FROM(select TOP 5 *
from (select TOP 6 *
from table
order by id) tbl1
order by id desc) Tbl2
order by id
select TOP 5 *
from table
WHERE Id > (SELECT TOP 1 Id FROM Table)
order by id
but markros had an ORDER BY in the subquery, which you forgot, and without which it won't workOther way is like markros said: