Suppose it is desired that UNION operation should return not more than 3 rows. Which keyword is used for this?

Suppose it is desired that UNION operation should return not more than 3 rows. Which keyword is used for this? Correct Answer LIMIT

When there is a need to put a limit to the number of rows returned by the ‘UNION’ operation, the statement ‘LIMIT’ is appended to the ‘SELECT’ queries which are joined by the ‘UNION’ operations.

Related Questions