Mathematical functions
The following mathematical functions are supported in PPL.
ABS
Usage: ABS(x)
Calculates the absolute value of x.
Parameters:
x(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.
Return type: INTEGER, LONG, FLOAT, or DOUBLE (same type as input)
Example
source=people
| eval `ABS(-1)` = ABS(-1)
| fields `ABS(-1)`
The query returns the following results:
| ABS(-1) |
|---|
| 1 |
ADD
Usage: ADD(x, y)
Calculates the sum of x and y.
Parameters:
x(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.y(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.
Return type: The wider numeric type between x and y
Synonyms: Addition Symbol (+)
Example
source=people
| eval `ADD(2, 1)` = ADD(2, 1)
| fields `ADD(2, 1)`
The query returns the following results:
| ADD(2, 1) |
|---|
| 3 |
SUBTRACT
Usage: SUBTRACT(x, y)
Calculates x minus y.
Parameters:
x(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.y(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.
Return type: The wider numeric type between x and y
Synonyms: Subtraction Symbol (-)
Example
source=people
| eval `SUBTRACT(2, 1)` = SUBTRACT(2, 1)
| fields `SUBTRACT(2, 1)`
The query returns the following results:
| SUBTRACT(2, 1) |
|---|
| 1 |
MULTIPLY
Usage: MULTIPLY(x, y)
Calculates the product of x and y.
Parameters:
x(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.y(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.
Return type: The wider numeric type between x and y
Synonyms: Multiplication Symbol (*)
Example
source=people
| eval `MULTIPLY(2, 1)` = MULTIPLY(2, 1)
| fields `MULTIPLY(2, 1)`
The query returns the following results:
| MULTIPLY(2, 1) |
|---|
| 2 |
DIVIDE
Usage: DIVIDE(x, y)
Calculates x divided by y.
Parameters:
x(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.y(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.
Return type: The wider numeric type between x and y
Synonyms: Division Symbol (/)
Example
source=people
| eval `DIVIDE(2, 1)` = DIVIDE(2, 1)
| fields `DIVIDE(2, 1)`
The query returns the following results:
| DIVIDE(2, 1) |
|---|
| 2 |
SUM
Usage: SUM(x, y, ...)
Calculates the sum of all provided arguments. This function accepts a variable number of arguments.
This function is only available in the eval command context and is rewritten to arithmetic addition during query parsing.
Parameters:
x, y, ...(Required): Variable number ofINTEGER,LONG,FLOAT, orDOUBLEarguments.
Return type: The widest numeric type among all arguments
Example
source=accounts
| eval `SUM(1, 2, 3)` = SUM(1, 2, 3)
| fields `SUM(1, 2, 3)`
The query returns the following results:
| SUM(1, 2, 3) |
|---|
| 6 |
| 6 |
| 6 |
| 6 |
source=accounts
| eval total = SUM(age, 10, 5)
| fields age, total
The query returns the following results:
| age | total |
|---|---|
| 32 | 47 |
| 36 | 51 |
| 28 | 43 |
| 33 | 48 |
AVG
Usage: AVG(x, y, ...)
Calculates the average (arithmetic mean) of all provided arguments. This function accepts a variable number of arguments.
This function is only available in the eval command context and is rewritten to an arithmetic expression (sum or count) during query parsing.
Parameters:
x, y, ...(Required): Variable number ofINTEGER,LONG,FLOAT, orDOUBLEarguments.
Return type: DOUBLE
Example
source=accounts
| eval `AVG(1, 2, 3)` = AVG(1, 2, 3)
| fields `AVG(1, 2, 3)`
The query returns the following results:
| AVG(1, 2, 3) |
|---|
| 2.0 |
| 2.0 |
| 2.0 |
| 2.0 |
source=accounts
| eval average = AVG(age, 30)
| fields age, average
The query returns the following results:
| age | average |
|---|---|
| 32 | 31.0 |
| 36 | 33.0 |
| 28 | 29.0 |
| 33 | 31.5 |
ACOS
Usage: ACOS(x)
Calculates the arccosine of x. Returns NULL if x is not in the [-1, 1] range.
Parameters:
x(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.
Return type: DOUBLE
Example
source=people
| eval `ACOS(0)` = ACOS(0)
| fields `ACOS(0)`
The query returns the following results:
| ACOS(0) |
|---|
| 1.5707963267948966 |
ASIN
Usage: ASIN(x)
Calculates the arcsine of x. Returns NULL if x is not in the [-1, 1] range.
Parameters:
x(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.
Return type: DOUBLE
Example
source=people
| eval `ASIN(0)` = ASIN(0)
| fields `ASIN(0)`
The query returns the following results:
| ASIN(0) |
|---|
| 0.0 |
ATAN
Usage: ATAN(x), ATAN(y, x)
Calculates the arctangent of x. ATAN(y, x) calculates the arctangent of the quotient y / x, using the signs of both arguments to determine the quadrant of the result.
Parameters:
x(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.y(Optional): AnINTEGER,LONG,FLOAT, orDOUBLEvalue (when using two-argument form).
Return type: DOUBLE
Example
source=people
| eval `ATAN(2)` = ATAN(2), `ATAN(2, 3)` = ATAN(2, 3)
| fields `ATAN(2)`, `ATAN(2, 3)`
The query returns the following results:
| ATAN(2) | ATAN(2, 3) |
|---|---|
| 1.1071487177940904 | 0.5880026035475675 |
ATAN2
Usage: ATAN2(y, x)
Calculates the arctangent of the quotient y / x, using the signs of both arguments to determine the quadrant of the result.
Parameters:
y(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.x(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.
Return type: DOUBLE
Example
source=people
| eval `ATAN2(2, 3)` = ATAN2(2, 3)
| fields `ATAN2(2, 3)`
The query returns the following results:
| ATAN2(2, 3) |
|---|
| 0.5880026035475675 |
CEIL
Usage: CEIL(x)
Returns the ceiling of the value x.
An alias for CEILING function.
Parameters:
x(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.
Return type: Same type as input
CEILING
Usage: CEILING(x)
Returns the ceiling of the value x.
The CEIL and CEILING functions have the same implementation and functionality.
Limitation: CEILING only works as expected when the IEEE 754 double type displays a decimal when stored.
Parameters:
x(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.
Return type: Same type as input
Example
source=people
| eval `CEILING(0)` = CEILING(0), `CEILING(50.00005)` = CEILING(50.00005), `CEILING(-50.00005)` = CEILING(-50.00005)
| fields `CEILING(0)`, `CEILING(50.00005)`, `CEILING(-50.00005)`
The query returns the following results:
| CEILING(0) | CEILING(50.00005) | CEILING(-50.00005) |
|---|---|---|
| 0 | 51.0 | -50.0 |
source=people
| eval `CEILING(3147483647.12345)` = CEILING(3147483647.12345), `CEILING(113147483647.12345)` = CEILING(113147483647.12345), `CEILING(3147483647.00001)` = CEILING(3147483647.00001)
| fields `CEILING(3147483647.12345)`, `CEILING(113147483647.12345)`, `CEILING(3147483647.00001)`
The query returns the following results:
| CEILING(3147483647.12345) | CEILING(113147483647.12345) | CEILING(3147483647.00001) |
|---|---|---|
| 3147483648.0 | 113147483648.0 | 3147483648.0 |
CONV
Usage: CONV(x, a, b)
Converts the number x from base a to base b.
Parameters:
x(Required): ASTRINGvalue.a(Required): AnINTEGERvalue.b(Required): AnINTEGERvalue.
Return type: STRING
Example
source=people
| eval `CONV('12', 10, 16)` = CONV('12', 10, 16), `CONV('2C', 16, 10)` = CONV('2C', 16, 10), `CONV(12, 10, 2)` = CONV(12, 10, 2), `CONV(1111, 2, 10)` = CONV(1111, 2, 10)
| fields `CONV('12', 10, 16)`, `CONV('2C', 16, 10)`, `CONV(12, 10, 2)`, `CONV(1111, 2, 10)`
The query returns the following results:
| CONV(‘12’, 10, 16) | CONV(‘2C’, 16, 10) | CONV(12, 10, 2) | CONV(1111, 2, 10) |
|---|---|---|---|
| c | 44 | 1100 | 15 |
COS
Usage: COS(x)
Calculates the cosine of x, where x is given in radians.
Parameters:
x(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.
Return type: DOUBLE
Example
source=people
| eval `COS(0)` = COS(0)
| fields `COS(0)`
The query returns the following results:
| COS(0) |
|---|
| 1.0 |
COSH
Usage: COSH(x)
Calculates the hyperbolic cosine of x, defined as (((e^x) + (e^(-x))) / 2).
Parameters:
x(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.
Return type: DOUBLE
Example
source=people
| eval `COSH(2)` = COSH(2)
| fields `COSH(2)`
The query returns the following results:
| COSH(2) |
|---|
| 3.7621956910836314 |
COT
Usage: COT(x)
Calculates the cotangent of x. Returns an error if x equals 0.
Parameters:
x(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.
Return type: DOUBLE
Example
source=people
| eval `COT(1)` = COT(1)
| fields `COT(1)`
The query returns the following results:
| COT(1) |
|---|
| 0.6420926159343306 |
CRC32
Usage: CRC32(expr)
Calculates a cyclic redundancy check value and returns a 32-bit unsigned value.
Parameters:
expr(Required): ASTRINGvalue.
Return type: LONG
Example
source=people
| eval `CRC32('MySQL')` = CRC32('MySQL')
| fields `CRC32('MySQL')`
The query returns the following results:
| CRC32(‘MySQL’) |
|---|
| 3259397556 |
DEGREES
Usage: DEGREES(x)
Converts x from radians to degrees.
Parameters:
x(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.
Return type: DOUBLE
Example
source=people
| eval `DEGREES(1.57)` = DEGREES(1.57)
| fields `DEGREES(1.57)`
The query returns the following results:
| DEGREES(1.57) |
|---|
| 89.95437383553924 |
E
Usage: E()
Returns Euler’s number (e ≈ 2.718281828459045).
Parameters: None
Return type: DOUBLE
Example
source=people
| eval `E()` = E()
| fields `E()`
The query returns the following results:
| E() |
|---|
| 2.718281828459045 |
EXP
Usage: EXP(x)
Returns e raised to the power of x.
Parameters:
x(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.
Return type: DOUBLE
Example
source=people
| eval `EXP(2)` = EXP(2)
| fields `EXP(2)`
The query returns the following results:
| EXP(2) |
|---|
| 7.38905609893065 |
EXPM1
Usage: EXPM1(x)
Returns e^x - 1 (exponential of x minus 1).
Parameters:
x(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.
Return type: DOUBLE
Example
source=people
| eval `EXPM1(1)` = EXPM1(1)
| fields `EXPM1(1)`
The query returns the following results:
| EXPM1(1) |
|---|
| 1.718281828459045 |
FLOOR
Usage: FLOOR(x)
Returns the floor of the value x.
Limitation: FLOOR only works as expected when the IEEE 754 double type displays a decimal when stored.
Parameters:
x(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.
Return type: Same type as input
Example
source=people
| eval `FLOOR(0)` = FLOOR(0), `FLOOR(50.00005)` = FLOOR(50.00005), `FLOOR(-50.00005)` = FLOOR(-50.00005)
| fields `FLOOR(0)`, `FLOOR(50.00005)`, `FLOOR(-50.00005)`
The query returns the following results:
| FLOOR(0) | FLOOR(50.00005) | FLOOR(-50.00005) |
|---|---|---|
| 0 | 50.0 | -51.0 |
source=people
| eval `FLOOR(3147483647.12345)` = FLOOR(3147483647.12345), `FLOOR(113147483647.12345)` = FLOOR(113147483647.12345), `FLOOR(3147483647.00001)` = FLOOR(3147483647.00001)
| fields `FLOOR(3147483647.12345)`, `FLOOR(113147483647.12345)`, `FLOOR(3147483647.00001)`
The query returns the following results:
| FLOOR(3147483647.12345) | FLOOR(113147483647.12345) | FLOOR(3147483647.00001) |
|---|---|---|
| 3147483647.0 | 113147483647.0 | 3147483647.0 |
source=people
| eval `FLOOR(282474973688888.022)` = FLOOR(282474973688888.022), `FLOOR(9223372036854775807.022)` = FLOOR(9223372036854775807.022), `FLOOR(9223372036854775807.0000001)` = FLOOR(9223372036854775807.0000001)
| fields `FLOOR(282474973688888.022)`, `FLOOR(9223372036854775807.022)`, `FLOOR(9223372036854775807.0000001)`
The query returns the following results:
| FLOOR(282474973688888.022) | FLOOR(9223372036854775807.022) | FLOOR(9223372036854775807.0000001) |
|---|---|---|
| 282474973688888.0 | 9.223372036854776e+18 | 9.223372036854776e+18 |
LN
Usage: LN(x)
Returns the natural logarithm of x.
Parameters:
x(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.
Return type: DOUBLE
Example
source=people
| eval `LN(2)` = LN(2)
| fields `LN(2)`
The query returns the following results:
| LN(2) |
|---|
| 0.6931471805599453 |
LOG
Usage: LOG(x), LOG(B, x)
Returns the natural logarithm of x (base e logarithm). LOG(B, x) is equivalent to log(x)/log(B).
Parameters:
x(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.B(Optional): AnINTEGER,LONG,FLOAT, orDOUBLEvalue (when using two-argument form).
Return type: DOUBLE
Example
source=people
| eval `LOG(2)` = LOG(2), `LOG(2, 8)` = LOG(2, 8)
| fields `LOG(2)`, `LOG(2, 8)`
The query returns the following results:
| LOG(2) | LOG(2, 8) |
|---|---|
| 0.6931471805599453 | 3.0 |
LOG2
Usage: LOG2(x)
Returns the base-2 logarithm of x. Equivalent to log(x)/log(2).
Parameters:
x(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.
Return type: DOUBLE
Example
source=people
| eval `LOG2(8)` = LOG2(8)
| fields `LOG2(8)`
The query returns the following results:
| LOG2(8) |
|---|
| 3.0 |
LOG10
Usage: LOG10(x)
Returns the base-10 logarithm of x. Equivalent to log(x)/log(10).
Parameters:
x(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.
Return type: DOUBLE
Example
source=people
| eval `LOG10(100)` = LOG10(100)
| fields `LOG10(100)`
The query returns the following results:
| LOG10(100) |
|---|
| 2.0 |
MOD
Usage: MOD(n, m)
Calculates the remainder of the number n divided by m.
Parameters:
n(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.m(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.
Return type: The wider type between n and m if m is nonzero value. If m equals 0, then returns NULL.
Example
source=people
| eval `MOD(3, 2)` = MOD(3, 2), `MOD(3.1, 2)` = MOD(3.1, 2)
| fields `MOD(3, 2)`, `MOD(3.1, 2)`
The query returns the following results:
| MOD(3, 2) | MOD(3.1, 2) |
|---|---|
| 1 | 1.1 |
MODULUS
Usage: MODULUS(n, m)
Calculates the remainder of the number n divided by m.
Parameters:
n(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.m(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.
Return type: The wider type between n and m if m is nonzero value. If m equals 0, then returns NULL.
Example
source=people
| eval `MODULUS(3, 2)` = MODULUS(3, 2), `MODULUS(3.1, 2)` = MODULUS(3.1, 2)
| fields `MODULUS(3, 2)`, `MODULUS(3.1, 2)`
The query returns the following results:
| MODULUS(3, 2) | MODULUS(3.1, 2) |
|---|---|
| 1 | 1.1 |
PI
Usage: PI()
Returns the mathematical constant π (pi ≈ 3.141592653589793).
Parameters: None
Return type: DOUBLE
Example
source=people
| eval `PI()` = PI()
| fields `PI()`
The query returns the following results:
| PI() |
|---|
| 3.141592653589793 |
POW
Usage: POW(x, y)
Calculates the value of x raised to the power of y. Invalid inputs return NULL.
Parameters:
x(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.y(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.
Return type: DOUBLE
Synonyms: POWER
Example
source=people
| eval `POW(3, 2)` = POW(3, 2), `POW(-3, 2)` = POW(-3, 2), `POW(3, -2)` = POW(3, -2)
| fields `POW(3, 2)`, `POW(-3, 2)`, `POW(3, -2)`
The query returns the following results:
| POW(3, 2) | POW(-3, 2) | POW(3, -2) |
|---|---|---|
| 9.0 | 9.0 | 0.1111111111111111 |
POWER
Usage: POWER(x, y)
Calculates the value of x raised to the power of y. Invalid inputs return NULL.
Parameters:
x(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.y(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.
Return type: DOUBLE
Synonyms: POW
Example
source=people
| eval `POWER(3, 2)` = POWER(3, 2), `POWER(-3, 2)` = POWER(-3, 2), `POWER(3, -2)` = POWER(3, -2)
| fields `POWER(3, 2)`, `POWER(-3, 2)`, `POWER(3, -2)`
The query returns the following results:
| POWER(3, 2) | POWER(-3, 2) | POWER(3, -2) |
|---|---|---|
| 9.0 | 9.0 | 0.1111111111111111 |
RADIANS
Usage: RADIANS(x)
Converts x from degrees to radians.
Parameters:
x(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.
Return type: DOUBLE
Example
source=people
| eval `RADIANS(90)` = RADIANS(90)
| fields `RADIANS(90)`
The query returns the following results:
| RADIANS(90) |
|---|
| 1.5707963267948966 |
RAND
Usage: RAND(), RAND(N)
Returns a random floating-point value in the [0, 1) range. If an integer N is specified, the seed is initialized prior to execution. As a result, calling RAND(N) with the same value of N always returns the same result, producing a repeatable sequence of column values.
Parameters:
N(Optional): AnINTEGERvalue.
Return type: FLOAT
Example
source=people
| eval `RAND(3)` = RAND(3)
| fields `RAND(3)`
The query returns the following results:
| RAND(3) |
|---|
| 0.34346429521113886 |
ROUND
Usage: ROUND(x, d)
Rounds the argument x to d decimal places. d defaults to 0.
Parameters:
x(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.d(Optional): AnINTEGERvalue.
Return type:
(INTEGER/LONG [,INTEGER])->LONG.(FLOAT/DOUBLE [,INTEGER])->LONG.
Example
source=people
| eval `ROUND(12.34)` = ROUND(12.34), `ROUND(12.34, 1)` = ROUND(12.34, 1), `ROUND(12.34, -1)` = ROUND(12.34, -1), `ROUND(12, 1)` = ROUND(12, 1)
| fields `ROUND(12.34)`, `ROUND(12.34, 1)`, `ROUND(12.34, -1)`, `ROUND(12, 1)`
The query returns the following results:
| ROUND(12.34) | ROUND(12.34, 1) | ROUND(12.34, -1) | ROUND(12, 1) |
|---|---|---|---|
| 12.0 | 12.3 | 10.0 | 12 |
SIGN
Usage: SIGN(x)
Returns the sign of the argument as -1, 0, or 1, depending on whether the number is negative, zero, or positive.
Parameters:
x(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.
Return type: Same type as input
Example
source=people
| eval `SIGN(1)` = SIGN(1), `SIGN(0)` = SIGN(0), `SIGN(-1.1)` = SIGN(-1.1)
| fields `SIGN(1)`, `SIGN(0)`, `SIGN(-1.1)`
The query returns the following results:
| SIGN(1) | SIGN(0) | SIGN(-1.1) |
|---|---|---|
| 1 | 0 | -1.0 |
SIGNUM
Usage: SIGNUM(x)
Returns the sign of the argument as -1, 0, or 1, depending on whether the number is negative, zero, or positive.
Parameters:
x(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.
Return type: INTEGER
Synonyms: SIGN
Example
source=people
| eval `SIGNUM(1)` = SIGNUM(1), `SIGNUM(0)` = SIGNUM(0), `SIGNUM(-1.1)` = SIGNUM(-1.1)
| fields `SIGNUM(1)`, `SIGNUM(0)`, `SIGNUM(-1.1)`
The query returns the following results:
| SIGNUM(1) | SIGNUM(0) | SIGNUM(-1.1) |
|---|---|---|
| 1 | 0 | -1.0 |
SIN
Usage: SIN(x)
Calculates the sine of x, where x is given in radians.
Parameters:
x(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.
Return type: DOUBLE
Example
source=people
| eval `SIN(0)` = SIN(0)
| fields `SIN(0)`
The query returns the following results:
| SIN(0) |
|---|
| 0.0 |
SINH
Usage: SINH(x)
Calculates the hyperbolic sine of x, defined as (((e^x) - (e^(-x))) / 2).
Parameters:
x(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.
Return type: DOUBLE
Example
source=people
| eval `SINH(2)` = SINH(2)
| fields `SINH(2)`
The query returns the following results:
| SINH(2) |
|---|
| 3.626860407847019 |
SQRT
Usage: SQRT(x)
Calculates the square root of a non-negative number x.
Parameters:
x(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.
Return type:
(Non-negative) INTEGER/LONG/FLOAT/DOUBLE->DOUBLE.(Negative) INTEGER/LONG/FLOAT/DOUBLE->NULL.
Example
source=people
| eval `SQRT(4)` = SQRT(4), `SQRT(4.41)` = SQRT(4.41)
| fields `SQRT(4)`, `SQRT(4.41)`
The query returns the following results:
| SQRT(4) | SQRT(4.41) |
|---|---|
| 2.0 | 2.1 |
CBRT
Usage: CBRT(x)
Calculates the cube root of a number x.
Parameters:
x(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.
Return type: DOUBLE
Example
source=location
| eval `CBRT(8)` = CBRT(8), `CBRT(9.261)` = CBRT(9.261), `CBRT(-27)` = CBRT(-27)
| fields `CBRT(8)`, `CBRT(9.261)`, `CBRT(-27)`
The query returns the following results:
| CBRT(8) | CBRT(9.261) | CBRT(-27) |
|---|---|---|
| 2.0 | 2.1 | -3.0 |
| 2.0 | 2.1 | -3.0 |
RINT
Usage: RINT(x)
Returns x rounded to the nearest integer.
Parameters:
x(Required): AnINTEGER,LONG,FLOAT, orDOUBLEvalue.
Return type: DOUBLE
Example
source=people
| eval `RINT(1.7)` = RINT(1.7)
| fields `RINT(1.7)`
The query returns the following results:
| RINT(1.7) |
|---|
| 2.0 |