The WHERE clause is used to filter records based on specified conditions.
WHERE
SELECT first_name, last_name FROM Users WHERE age > 18;
This query retrieves the first and last names of users who are older than 18 years.