I'm trying to do something like :
SELECT * FROM table LIMIT 10,20
or
SELECT * FROM table LIMIT 10 OFFSET 10
but using SQL Server
The only solution I found looks like overkill:
SELECT * FROM (
SELECT *, ROW_NUMBER() OVER (ORDER BY name) as row FROM sys.databases
) a WHERE row > 5 and row <= 10
I also found:
SELECT TOP 10 * FROM stuff;
... but it's not what I want to do since I can't specify the starting limit.
Is there another way for me to do that ?
Also, just curious, is there a reason why doesn't SQL Server support the LIMIT
function or something similar? I don't want to be mean, but that really sounds like something a DBMS needs ... If it does, then I'm sorry for being so ignorant! I've been working with MySQL and SQL+ for the past 5 years so...
it will print from 15 to 25 as like limit in MYSQl
Use all SQL server: ;with tbl as (SELECT ROW_NUMBER() over(order by(select 1)) as RowIndex,* from table) select top 10 * from tbl where RowIndex>=10
as you found, this is the preferred sql server method:
A good way is to create a procedure:
just like limit 0,2 /////////////// execute pagination 0,4
For SQL Server 2012 + you can use.
The
LIMIT
clause is not part of standard SQL. It's supported as a vendor extension to SQL by MySQL, PostgreSQL, and SQLite.Other brands of database may have similar features (e.g.
TOP
in Microsoft SQL Server), but these don't always work identically.It's hard to use
TOP
in Microsoft SQL Server to mimic theLIMIT
clause. There are cases where it just doesn't work.The solution you showed, using
ROW_NUMBER()
is available in Microsoft SQL Server 2005 and later. This is the best solution (for now) that works solely as part of the query.Another solution is to use
TOP
to fetch the first count + offset rows, and then use the API to seek past the first offset rows.See also: