limiter le décalage SQL Server
SELECT Columns
FROM MyTable
ORDER BY SomeColumn -- !IMPORTANT: Without order by it will not execute
OFFSET 10 ROWS --this means start with row 11
FETCH NEXT 10 ROWS ONLY --this means limit the results to the next 10 rows.
Maaaruf