Question Details

Detailed explanation and options for the selected question.

What is the purpose of the SQL LIMIT clause?

A. To restrict the number of rows returned
B. To filter rows based on a condition
C. To group rows by a common value
D. To order query results

Explanation:

LIMIT restricts the number of rows returned. WHERE filters rows, GROUP BY groups rows, and ORDER BY sorts results.