在SQL Server中查找第100个第200个等等记录

2 sql sql-server sorting

我在SQL Server中有这样的大表:

tbl_point:

point     time
1         dec 12 12 pm
2         dec 12 12 01 pm
.
. 
100       dec 15 2 pm
. 
.
200       dec 18 5 pm
Run Code Online (Sandbox Code Playgroud)

我需要选择第100,200,300到第n条记录

喜欢

100     dec 15 2 pm
200     dec 18 5 pm
.
.
Run Code Online (Sandbox Code Playgroud)

sum*_*mit 5

select * from tbl_point where point%100=0 and point>0
Run Code Online (Sandbox Code Playgroud)