InfluxQL mathematical operators

Addition

Perform addition with a constant.

  1. SELECT * FROM "add" WHERE "A" + 5 > 10

Perform addition on two fields.

  1. SELECT "A" + "B" FROM "add"
  1. SELECT * FROM "add" WHERE "A" + "B" >= 10

Subtraction

Perform subtraction with a constant.

  1. SELECT 1 - "A" FROM "sub"
  1. SELECT * FROM "sub" WHERE 1 - "A" <= 3

Perform subtraction with two fields.

  1. SELECT "A" - "B" FROM "sub"
  1. SELECT * FROM "sub" WHERE "A" - "B" <= 1

Multiplication

Perform multiplication with a constant.

  1. SELECT 10 * "A" FROM "mult"
  1. SELECT * FROM "mult" WHERE "A" * 10 >= 20

Perform multiplication with two fields.

  1. SELECT "A" * "B" * "C" FROM "mult"
  1. SELECT * FROM "mult" WHERE "A" * "B" <= 80

Multiplication distributes across other operators.

  1. SELECT 10 * ("A" + "B" + "C") FROM "mult"
  1. SELECT 10 * ("A" - "B" - "C") FROM "mult"

Perform division with a constant.

  1. SELECT 10 / "A" FROM "div"
  1. SELECT * FROM "div" WHERE "A" / 10 <= 2

Perform division with two fields.

  1. SELECT "A" / "B" FROM "div"
  1. SELECT * FROM "div" WHERE "A" / "B" >= 10

Division distributes across other operators.

  1. SELECT 10 / ("A" + "B" + "C") FROM "mult"

Modulo

Perform modulo arithmetic with a constant.

    1. SELECT "B" FROM "modulo" WHERE "B" % 2 = 0
    1. SELECT "A" % "B" FROM "modulo"
    1. SELECT "A" FROM "modulo" WHERE "A" % "B" = 0

    Bitwise AND

    You can use this operator with any integers or Booleans, whether they are fields or constants.It does not work with float or string datatypes, and you cannot mix integers and Booleans.

    1. SELECT "A" & "B" FROM "bitfields"
    1. SELECT * FROM "data" WHERE "bitfield" & 15 > 0
    1. SELECT "A" & "B" FROM "booleans"

    Bitwise OR

    You can use this operator with any integers or Booleans, whether they are fields or constants.It does not work with float or string datatypes, and you cannot mix integers and Booleans.

    1. SELECT "A" | 5 FROM "bitfields"
    1. SELECT "A" | "B" FROM "bitfields"
    1. SELECT * FROM "data" WHERE "bitfield" | 12 = 12

    You can use this operator with any integers or Booleans, whether they are fields or constants.It does not work with float or string datatypes, and you cannot mix integers and Booleans.

    1. SELECT "A" ^ 255 FROM "bitfields"
    1. SELECT "A" ^ "B" FROM "bitfields"
    1. SELECT * FROM "data" WHERE "bitfield" ^ 6 > 0

    Common Issues with Mathematical Operators

    Issue 1: Mathematical operators with wildcards and regular expressions

    InfluxDB does not support combining mathematical operations with a wildcard (*) or in the SELECT clause.The following queries are invalid and the system returns an error:

    Perform a mathematical operation on a wildcard.

    1. > SELECT * + 2 FROM "nope"
    2. ERR: unsupported expression with wildcard: * + 2

    Perform a mathematical operation on a wildcard within a function.

    1. > SELECT COUNT(*) / 2 FROM "nope"
    2. ERR: unsupported expression with wildcard: count(*) / 2

    Perform a mathematical operation on a regular expression.

    1. > SELECT /A/ + 2 FROM "nope"
    2. ERR: error parsing query: found +, expected FROM at line 1, char 12

    Perform a mathematical operation on a regular expression within a function.

    1. > SELECT COUNT(/A/) + 2 FROM "nope"
    2. ERR: unsupported expression with regex field: count(/A/) + 2

    Issue 2: Mathematical operators with functions

    The use of mathematical operators inside of function calls is currently unsupported.Note that InfluxDB only allows functions in the SELECT clause.

    For example

    1. SELECT 10 * mean("value") FROM "cpu"

    will work, however

    1. SELECT mean(10 * "value") FROM "cpu"

    Unsupported Operators

    Inequalities

    Using any of =,,<,>,<=,>=,<> in the SELECT clause yields empty results for all types.See GitHub issue .

    Logical Operators

    Using any of !|,NAND,XOR,NOR yield a parser error.

    Additionally using AND, OR in the SELECT clause of a query will not behave as mathematical operators and simply yield empty results, as they are tokens in InfluxQL.However, you can apply the bitwise operators &, | and ^ to Boolean data.

    There is no bitwise-not operator, because the results you expect depend on the width of your bitfield.InfluxQL does not know how wide your bitfield is, so cannot implement a suitable bitwise-not operator.

    For example, if your bitfield is 8 bits wide, then to you the integer 1 represents the bits 0000 0001.The bitwise-not of this should return the bits 1111 1110, i.e. the integer 254.

    However, if your bitfield is 16 bits wide, then the integer 1 represents the bits 0000 0000 0000 0001.The bitwise-not of this should return the bits 1111 1111 1111 1110, i.e. the integer 65534.

    Solution

    You can implement a bitwise-not operation by using the ^ (bitwise xor) operator together with the number representing all-ones for your word-width:

    For 8-bit data:

      For 16-bit data:

      For 32-bit data:

      1. SELECT "A" ^ 4294967295 FROM "data"