The WHERE clause in SQL is used to filter records based on specified conditions. It is commonly used in SELECT, UPDATE, and DELETE statements to target specific rows.
Example
SELECT * FROM users
WHERE age > 30;
This query selects all users with an age greater than 30.