Home  >  Q&A  >  body text

例子中的Select * from user limit 1,2,还是有点不明白?

看透不说透看透不说透2886 days ago1499

reply all(3)I'll reply

  • 数据分析师

    数据分析师2017-09-30 22:48:56

    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.

    reply
    0
  • 阿神

    阿神2016-12-17 15:17:44

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

    reply
    1
  • 迷茫

    迷茫2016-12-17 15:16:29

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

    reply
    2
  • Cancelreply