postgre@R_301_194@某记录前N行:SELECT * FROM table LIMIT N;postgre@R_301_194@某记录最后后N行:SELECT * FROM table order by id desc LIMIT N;postgre@R_301_194@某记录从M行开始N行:SELECT * FROM table LIMIT N OFFSET M;