I want to fire a Query \"SELECT * FROM TABLE\" but select only from row N+1. Any idea on how to do this?
SELECT * FROM TABLE
N+1
In order to do this in SQL Server, you must order the query by a column, so you can specify the rows you want.
Example:
select * from table order by [some_column] offset 10 rows FETCH NEXT 10 rows only