I have a huge data in my table so I want to fetch it in parts. So I am trying to run
select top 1000 from table_name
It's giving me the top 1000 data but what will be the query if I want the next 1000 data. It's just returning me the first 1000 data.