ClickHouse operators in Propel
+
: Addition-
: Subtraction*
: Multiplication/
: Division%
: Modulo=
, ==
: Equal to!=
, <>
: Not equal to<
: Less than>
: Greater than<=
: Less than or equal to>=
: Greater than or equal toAND
: Logical ANDOR
: Logical ORNOT
: Logical NOTa BETWEEN b AND c
: Equivalent to a >= b AND a <= c
a NOT BETWEEN b AND c
: Equivalent to a < b OR a > c
a IN (x, y, z)
: Checks if a
is equal to any value in the lista NOT IN (x, y, z)
: Checks if a
is not equal to any value in the lista LIKE pattern
: Pattern matching with %
(any string) and _
(any single character)a NOT LIKE pattern
: Negation of LIKEa IS NULL
: Checks if a
is NULLa IS NOT NULL
: Checks if a
is not NULLa ? b : c
: If a
is true, returns b
, otherwise returns c
||
: Concatenates strings