Math Operatorsedit

Elasticsearch SQL supports the following math operators:

  • Add (+)
SELECT 1 + 1 AS x;
  • Subtract (infix -)
SELECT 1 - 1 AS x;
  • Negate (unary -)
SELECT - 1 AS x;
  • Multiply (*)
SELECT 2 * 3 AS x;
  • Divide (/)
SELECT 6 / 3 AS x;
SELECT 5 % 2 AS x;