Question Details

Detailed explanation and options for the selected question.

Which SQL clause is used to limit the number of rows returned by a query?

A. LIMIT
B. WHERE
C. GROUP BY
D. ORDER BY

Explanation:

LIMIT restricts the number of rows returned by a query. WHERE filters rows, GROUP BY groups rows, and ORDER BY sorts them.