从数据表中取出第n条到第m条的记录的方法
SELECT TOP m-n+1 * FROM publish WHERE (id NOT IN?(SELECT TOP n-1 id?FROM publish))