where

SQL WHERE Clause

SQL WHERE Clause

The WHERE clause is used to filter records based on specified conditions.

Query with WHERE Clause

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.