LIMIT คีย์เวิร์ดใน MySQL สามารถระบุจำนวนเร็กคอร์ดที่จะส่งคืนในเอาต์พุต LIMIT clause จำกัดจำนวนแถวที่จะส่งคืน สามารถเข้าใจได้ด้วยความช่วยเหลือของตัวอย่างต่อไปนี้ −
ตัวอย่าง
mysql> Select * from Student_info; +------+---------+------------+------------+ | id | Name | Address | Subject | +------+---------+------------+------------+ | 101 | YashPal | Amritsar | History | | 105 | Gaurav | Chandigarh | Literature | | 125 | Raman | Shimla | Computers | | 130 | Ram | Jhansi | Computers | | 132 | Shyam | Chandigarh | Economics | | 133 | Mohan | Delhi | Computers | | 150 | Saurabh | NULL | Literature | +------+---------+------------+------------+ 7 rows in set (0.00 sec)
ชุดผลลัพธ์ข้างต้นแสดงว่าตาราง 'student_info' มีทั้งหมด 7 แถว
แต่ถ้าเราต้องการได้เฉพาะเอาต์พุต 2 แถวบนสุด เราก็สามารถใช้คีย์เวิร์ด LIMIT ตามด้วย 2 ได้ดังนี้:
mysql> Select * from Student_info LIMIT 2; +------+---------+------------+------------+ | id | Name | Address | Subject | +------+---------+------------+------------+ | 101 | YashPal | Amritsar | History | | 105 | Gaurav | Chandigarh | Literature | +------+---------+------------+------------+ 2 rows in set (0.00 sec)