日期:2014-05-16  浏览次数:20374 次

从数据表中取出第n条到第m条的记录的方法

SELECT TOP m-n+1 * FROM publish
WHERE (id NOT IN?(SELECT TOP n-1 id?FROM publish))