Answer:
Use the syntax SELECT _LIMIT_ (expression) [Column Name] to limit the result set to the number of rows defined by the expression.
Step-by-step explanation:
The LIMIT keyword is often used to limit the number of rows returned in a result. Usually, the Limit expression is combined with the "SELECT column_name(s) FROM table_name...WHERE condition" can be used to limit the result set to the number of rows defined by the expression, LIMIT. The WHERE condition is optional, meaning it can be omitted.