Intern
What does the WHERE clause in SQL affect?
sobes.tech AI
Answer from AI
The WHERE condition in SQL is used to filter the records returned by a query (SELECT, UPDATE, DELETE). It specifies the criteria that a row must meet to be included in the operation's result. Without WHERE, the query processes all rows of the table.