select * from table limit m,n;
因为记录从0开始计算,所以从m+1条记录开始取,取n条
当m不存在时,即select * from table limit n;
取n条记录