Is it possible to return rows from a certain number to certain number.
For example,
I give a SQL Statement as
Select * from tblTest
which gives me all the entries. Now I want to select the records from entry 20 to entry 30. Is it possible??
I know the statement
Select top 10 * from tblTest
gives me the first 10 records. But I want to do it from 10 to 20 etc.
Thanks in advance ..!!
For example,
I give a SQL Statement as
Select * from tblTest
which gives me all the entries. Now I want to select the records from entry 20 to entry 30. Is it possible??
I know the statement
Select top 10 * from tblTest
gives me the first 10 records. But I want to do it from 10 to 20 etc.
Thanks in advance ..!!