aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/docs/en/syntax/select/where.md
blob: e522ab82d6cb7209c175edcb0781667301d29fa4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# WHERE

Filtering rows in the `SELECT`  result based on a condition in tables.

## Example

```yql
SELECT key FROM my_table
WHERE value > 0;
```