1、类似与分页效果
select top 1 * from dbo.td_BBSBoardInfo where (bbi_id not in (select top 10 bbi_id from dbo.td_BBSBoardInfo order by bbi_Number)) order by bbi_Number
2、创建临时表
SELECT IDENTITY(INT,1,1) AS id,BBI_Name INTO #condition5 FROM dbo.td_BBSBoardInfo order by bbi_number asc
select * from #condition5 where id=11