Simulate a (mysql)LIMIT on "MS SQLserver"
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
11380 users tagging and storing useful source code snippets
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
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