1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- [discrete]
- [[esql-binary-operators]]
- === Binary operators
- [[esql-binary-operators-equality]]
- ==== Equality
- [.text-center]
- image::esql/functions/signature/equals.svg[Embedded,opts=inline]
- Supported types:
- include::types/equals.asciidoc[]
- ==== Inequality `!=`
- [.text-center]
- image::esql/functions/signature/not_equals.svg[Embedded,opts=inline]
- Supported types:
- include::types/not_equals.asciidoc[]
- ==== Less than `<`
- [.text-center]
- image::esql/functions/signature/less_than.svg[Embedded,opts=inline]
- Supported types:
- include::types/less_than.asciidoc[]
- ==== Less than or equal to `<=`
- [.text-center]
- image::esql/functions/signature/less_than_or_equal.svg[Embedded,opts=inline]
- Supported types:
- include::types/less_than_or_equal.asciidoc[]
- ==== Greater than `>`
- [.text-center]
- image::esql/functions/signature/greater_than.svg[Embedded,opts=inline]
- Supported types:
- include::types/greater_than.asciidoc[]
- ==== Greater than or equal to `>=`
- [.text-center]
- image::esql/functions/signature/greater_than_or_equal.svg[Embedded,opts=inline]
- Supported types:
- include::types/greater_than_or_equal.asciidoc[]
- ==== Add `+`
- [.text-center]
- image::esql/functions/signature/add.svg[Embedded,opts=inline]
- Supported types:
- include::types/add.asciidoc[]
- ==== Subtract `-`
- [.text-center]
- image::esql/functions/signature/sub.svg[Embedded,opts=inline]
- Supported types:
- include::types/sub.asciidoc[]
- ==== Multiply `*`
- [.text-center]
- image::esql/functions/signature/mul.svg[Embedded,opts=inline]
- Supported types:
- include::types/mul.asciidoc[]
- ==== Divide `/`
- [.text-center]
- image::esql/functions/signature/div.svg[Embedded,opts=inline]
- Supported types:
- include::types/div.asciidoc[]
- ==== Modulus `%`
- [.text-center]
- image::esql/functions/signature/mod.svg[Embedded,opts=inline]
- Supported types:
- include::types/mod.asciidoc[]
|