LIMIT clause is used with SELECT statement when we want a limited number of fetched records.
Syntax:
SELECT column1, column2, columnN FROM table_name LIMIT [no of rows]
SELECT column1, column2, columnN
FROM table_name
LIMIT [no of rows]