在VB前台可實現。 Rs.open"select *from table_a",cn,3,2 if rs.RecordCount >=3 then rs.MoveFirst rs.MoveNext rs.MoveNext else msgbox "數據不足3行或無數據" end if 此時便是第三行的數據。。。
use Northwind go select id=identity(int,1,1),* into #t from Customers --取第11条记录 select top 1 * from #t where id not in(select top 10 id from #t) drop table #t