Skip to content
Blog

Comparison Operators

The following table describes the standard comparison operators supported by Kùzu. If any of the input arguments is NULL, the comparison result will also be NULL.

OperatorDescriptionExampleResult
<less than2 < 3true
\>greater than1 \> 5true
<=less than or equal to3 <= 3true
\>=greater than or equal to4 \>= 2true
=equalNULL = NULLNULL
<\>not equal5 <\> NULLNULL