🎴 Flashcard Mode
Oracle PL/SQL and SQL Fundamentals
Card1 / 20
Mastered0
Review0
QuestionClick to flip
Which clause in a query limits the rows selected?
AnswerClick to flip back
A
WHERE
💡 Explanation:
The WHERE clause in SQL queries is specifically designed to filter rows based on conditions, limiting which rows are returned by the SELECT statement. FROM specifies the table source, SELECT chooses columns, and ORDER BY sorts the results. Only WHERE actually limits the rows selected based on criteria.