binary.asciidoc 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. [discrete]
  2. [[esql-binary-operators]]
  3. === Binary operators
  4. [[esql-binary-operators-equality]]
  5. ==== Equality
  6. [.text-center]
  7. image::esql/functions/signature/equals.svg[Embedded,opts=inline]
  8. Supported types:
  9. include::types/equals.asciidoc[]
  10. ==== Inequality `!=`
  11. [.text-center]
  12. image::esql/functions/signature/not_equals.svg[Embedded,opts=inline]
  13. Supported types:
  14. include::types/not_equals.asciidoc[]
  15. ==== Less than `<`
  16. [.text-center]
  17. image::esql/functions/signature/less_than.svg[Embedded,opts=inline]
  18. Supported types:
  19. include::types/less_than.asciidoc[]
  20. ==== Less than or equal to `<=`
  21. [.text-center]
  22. image::esql/functions/signature/less_than_or_equal.svg[Embedded,opts=inline]
  23. Supported types:
  24. include::types/less_than_or_equal.asciidoc[]
  25. ==== Greater than `>`
  26. [.text-center]
  27. image::esql/functions/signature/greater_than.svg[Embedded,opts=inline]
  28. Supported types:
  29. include::types/greater_than.asciidoc[]
  30. ==== Greater than or equal to `>=`
  31. [.text-center]
  32. image::esql/functions/signature/greater_than_or_equal.svg[Embedded,opts=inline]
  33. Supported types:
  34. include::types/greater_than_or_equal.asciidoc[]
  35. ==== Add `+`
  36. [.text-center]
  37. image::esql/functions/signature/add.svg[Embedded,opts=inline]
  38. Supported types:
  39. include::types/add.asciidoc[]
  40. ==== Subtract `-`
  41. [.text-center]
  42. image::esql/functions/signature/sub.svg[Embedded,opts=inline]
  43. Supported types:
  44. include::types/sub.asciidoc[]
  45. ==== Multiply `*`
  46. [.text-center]
  47. image::esql/functions/signature/mul.svg[Embedded,opts=inline]
  48. Supported types:
  49. include::types/mul.asciidoc[]
  50. ==== Divide `/`
  51. [.text-center]
  52. image::esql/functions/signature/div.svg[Embedded,opts=inline]
  53. Supported types:
  54. include::types/div.asciidoc[]
  55. ==== Modulus `%`
  56. [.text-center]
  57. image::esql/functions/signature/mod.svg[Embedded,opts=inline]
  58. Supported types:
  59. include::types/mod.asciidoc[]