SQL WHERE Clause

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';

Continue reading SQL WHERE Clause