WHERE

The WHERE clause filters records that meet a specified condition.

Syntax

WHERE <condition>

Arguments

Parameter

Description

condition

The condition to be met for a row to be included in the result set

Examples

SELECT
  *
FROM
  employees
WHERE
  salary > 50000;