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
Try this one:
select * from [Table-Name] order by [Column-Name] offset [Skip-Count] rows FETCH NEXT [Take-Count] rows only
Example:
select * from Personals order by Id offset 10 rows --------->Skip 10 FETCH NEXT 15 rows only --------->Take 15