select top 10 * from (select row_number() over(order by ID) as num,* from TABLE) B where num>=(select num from (select row_number() over(order by ID) as num,* from TABLE) A where 列1='b')
select top 10 * from (select row_number() over(order by ID) as num,* from TABLE) b where num>=(select num from (select row_number() over(order by ID) as num,* from TABLE) a where 列1 = 'b')
select top 10 * from (select row_number() over(order by ID) as num,* from TABLE) B where num>=(select num from (select row_number() over(order by ID) as num,* from TABLE) A where 列1='b')