ClickHouse/docs/en/sql-reference/statements/select/where.md
yeer ac7330b805
Update where.md
type: expluded => excluded
2021-09-10 11:41:46 +08:00

705 B
Raw Blame History

toc_title
WHERE

WHERE Clause

WHERE clause allows to filter the data that is coming from FROM clause of SELECT.

If there is a WHERE clause, it must contain an expression with the UInt8 type. This is usually an expression with comparison and logical operators. Rows where this expression evaluates to 0 are excluded from further transformations or result.

WHERE expression is evaluated on the ability to use indexes and partition pruning, if the underlying table engine supports that.

!!! note "Note" Theres a filtering optimization called prewhere.