查询第m行到第n行记录,注意表中的记录下标是从0开始的,就像数组一样
select * from student limit m,n; 返回m+1到m+n行记录,m代表开始的下标,n代表查找的结果数,将返回n行结果 select * from student limit 2,8; 返回3到10行记录
标签:语句,记录,查询,limit,student,MySQL,select From: https://www.cnblogs.com/lixianhui/p/17469107.html
查询第m行到第n行记录,注意表中的记录下标是从0开始的,就像数组一样
select * from student limit m,n; 返回m+1到m+n行记录,m代表开始的下标,n代表查找的结果数,将返回n行结果 select * from student limit 2,8; 返回3到10行记录
标签:语句,记录,查询,limit,student,MySQL,select From: https://www.cnblogs.com/lixianhui/p/17469107.html