LIMIT clause
LIMIT [rowOffset, ] maxRows;
SELECT productID, productName
FROM products
LIMIT 3;
SELECT productID, productName
FROM products
LIMIT 0, 3;
SELECT productID, productName
FROM product
LIMIT 1, 3;
LIMIT clause to limit the number of rows that are included in the result set.