如何用(yòng)SQL實現從第幾條記錄開始取幾條?
select top 10 * from (select top 200 * from table order by id desc) order by id
即倒數前200條記錄裏提取前十條rs.move: 移動至特定記錄
rs.movenext: 向後移動一條記錄
rs.moveprevious: 向前移動一條記錄
rs.movefirst: 移動至第一條記錄
rs.movelast: 移動至最後一條記錄
select top 2 * from table
where table.id not in (SELECT top 1 id from table)
最簡單就這(zhè)個(gè)了(le),取前2條,但是不要第一條