2023-10-17 23:36:14 +08:00
|
|
|
[discrete]
|
|
|
|
[[esql-binary-operators]]
|
|
|
|
=== Binary operators
|
|
|
|
|
|
|
|
These binary comparison operators are supported:
|
|
|
|
|
|
|
|
* equality: `==`
|
|
|
|
* inequality: `!=`
|
|
|
|
* less than: `<`
|
|
|
|
* less than or equal: `<=`
|
|
|
|
* larger than: `>`
|
2023-12-08 22:24:34 +08:00
|
|
|
* larger than or equal: `>=`
|
|
|
|
|
|
|
|
And these mathematical operators are supported:
|
|
|
|
|
|
|
|
[.text-center]
|
|
|
|
image::esql/functions/signature/add.svg[Embedded,opts=inline]
|
|
|
|
|
|
|
|
[.text-center]
|
|
|
|
image::esql/functions/signature/sub.svg[Embedded,opts=inline]
|