Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Simulate a (mysql)LIMIT on "MS SQLserver" (See related posts)

return lines from 7995 to 8000 (5 lines)

select * from (
select top 5 * from 
(select top 8000 * from TABLE order by 1 asc) as tbl1 order by 1 desc 
) as tbl2 order by 1 asc

You need to create an account or log in to post comments to this site.


Click here to browse all 4848 code snippets

Related Posts