查询出从n开始的m条记录 mysql中是这样的 select * from table limit n,m mssql中是这样的 [code] select top m * from table where id not in ( sele...