Create Proc
This will select rows from the table [hoe_database].[dbo].[random_data] using OFFSET which is simply calculated as (@page - 1) * @rows
1 | Example: (2 - 1) * 25 = 25 |
FETCH NEXT then simply returns the next @rows which was 25.
For this to work we order by the id DESC so the most recent records are at the top.
Execute Proc
1 | EXEC dbo.[prc_select_some_crap] @page = 2, @rows = 25; |
Quick Test
Changing the values @page and @rows should show the results if you cannot create stored procs.
1 | DECLARE @page INT = 5; |