使用Sql查询第几行数据
返回从N行到M行的数据(M>N)
select top (M-N) * from tablename where id not in (select top N id from tablename)
这个我已经用过的了,能行的.
返回从N行到M行的数据(M>N)
select top (M-N) * from tablename where id not in (select top N id from tablename)
这个我已经用过的了,能行的.