The SQL WHERE Clause
The WHERE
clause is used to filter records.
It is used to extract only those records that fulfill a specified condition.
Example
Select all customers from Mexico:
SELECT * FROM Customers
WHERE Country='Mexico';
The WHERE
clause is used to filter records.
It is used to extract only those records that fulfill a specified condition.
Select all customers from Mexico:
SELECT * FROM Customers
WHERE Country='Mexico';