1.2.2.10.Limiting the Data Retrieved Using LIMIT

  • 限制查詢的個數

select * from StudentsDetails limit 5;
  • 限制查詢的個數, 並指定起算的index

select * from StudentsDetails limit 5, 5;

Last updated

Was this helpful?