What is the SQL equivalent of the .Skip() method in LINQ?
.Skip()
For example: I would like to select rows 1000-1100 from a specific database table.
Is
SQL Server 2012 and above have added this syntax:
SELECT * FROM Sales.SalesOrderHeader ORDER BY OrderDate OFFSET (@Skip) ROWS FETCH NEXT (@Take) ROWS ONLY