例子中的Select * from user limit 1,2,还是有点不明白?
看透不说透
看透不说透 2016-12-17 15:14:03
0
3
1507
看透不说透
看透不说透

reply all(3)
数据分析师

Select * from user limit 1,2 in the example, still a bit unclear? -PHP Chinese website Q&A-Select * from user limit 1,2 in the example, still a little unclear? -PHP Chinese website Q&A

Please watch and learn.

阿神

limit是mysql的语法
Select * from table limit m,n
其中m是指记录开始的index,从0开始,表示第一条记录
n是指从第m+1条开始,取n条。
Select * from user limit 1,2
即取出第2条至第3条,共2条记录

迷茫

查询user表中的数据,从第一条开始取,取俩条数据。

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template