Mathematical Functions

abs(x) [same as x]

Returns the absolute value of x.

acos(x) double

Returns the inverse cosine (a.k.a. arc cosine) of x.

acosh(x) double

Returns inverse hyperbolic cosine of x.

asinh(x) double

Returns inverse hyperbolic sine of x.

atan2(y, x) double

Returns the arc tangent of y / x. For compatibility with Spark, returns 0 for the following corner cases: * atan2(0.0, 0.0) * atan2(-0.0, -0.0) * atan2(-0.0, 0.0) * atan2(0.0, -0.0)

atanh(x) double

Returns inverse hyperbolic tangent of x.

add(x, y) [same as x]

Returns the result of adding x to y. The types of x and y must be the same. For integral types, overflow results in an error. Corresponds to sparks’s operator +.

add(x, y) decimal

Returns the result of adding x to y. The argument types should be DECIMAL, and can have different precisions and scales. Fast path is implemented for cases that should not overflow. For the others, the whole parts and fractional parts of input decimals are added separately and combined finally. The result type is calculated with the max precision of input precisions, the max scale of input scales, and one extra digit for possible carrier. Overflow results in null output. Corresponds to Spark’s operator +.

SELECT CAST(1.1232100 as DECIMAL(38, 7)) + CAST(1 as DECIMAL(10, 0)); -- DECIMAL(38, 6) 2.123210
SELECT CAST(-999999999999999999999999999.999 as DECIMAL(30, 3)) + CAST(-999999999999999999999999999.999 as DECIMAL(30, 3)); -- DECIMAL(31, 3) -1999999999999999999999999999.998
SELECT CAST(99999999999999999999999999999999.99998 as DECIMAL(38, 6)) + CAST(-99999999999999999999999999999999.99999 as DECIMAL(38, 5)); -- DECIMAL(38, 6) -0.000010
SELECT CAST(-99999999999999999999999999999999990.0 as DECIMAL(38, 3)) + CAST(-0.00001 as DECIMAL(38, 7)); -- DECIMAL(38, 6) NULL
bin(x) varchar

Returns the string representation of the long value x represented in binary.

ceil(x) [same as x]

Returns x rounded up to the nearest integer. Supported types are: BIGINT and DOUBLE.

cosh(x) double

Returns the hyperbolic cosine of x.

cot(x) double

Returns the cotangent of ``x``(measured in radians). Supported type is DOUBLE.

csc(x) double

Returns the cosecant of x.

divide(x, y) double

Returns the results of dividing x by y. Performs floating point division. Supported type is DOUBLE. Corresponds to Spark’s operator /.

SELECT 3 / 2; -- 1.5
SELECT 2L / 2L; -- 1.0
SELECT 3 / 0; -- NULL
divide(x, y) decimal

Returns the results of dividing x by y. Supported type is DECIMAL which can be different precision and scale. Performs floating point division. The result type depends on the precision and scale of x and y. Overflow results return null. Corresponds to Spark’s operator /.

SELECT CAST(1 as DECIMAL(17, 3)) / CAST(2 as DECIMAL(17, 3)); -- decimal 0.500000000000000000000
SELECT CAST(1 as DECIMAL(20, 3)) / CAST(20 as DECIMAL(20, 2)); -- decimal 0.0500000000000000000
SELECT CAST(1 as DECIMAL(20, 3)) / CAST(0 as DECIMAL(20, 3)); -- NULL
exp(x) double

Returns Euler’s number raised to the power of x.

floor(x) [same as x]

Returns x rounded down to the nearest integer. Supported types are: BIGINT and DOUBLE.

hex(x) varchar

Converts x to hexadecimal. Supported types are: BIGINT, VARBINARY and VARCHAR. If the argument is a VARCHAR or VARBINARY, the result is string where each input byte is represented using 2 hex characters. If the argument is a positive BIGINT, the result is a hex representation of the number (up to 16 characters), if the argument is a negative BIGINT, the result is a hex representation of the number which will be treated as two’s complement.

SELECT hex("Spark SQL"); -- 537061726B2053514C
SELECT hex(17); -- 11
SELECT hex(-1); -- FFFFFFFFFFFFFFFF
hypot(a, b) double

Returns the square root of a squared plus b squared.

isnan(x) boolean

Returns true if x is Nan, or false otherwise. Returns false is x is NULL. Supported types are: REAL, DOUBLE.

log2(x) double

Returns the logarithm of x with base 2. Return null for zero and non-positive input.

log10(x) double

Returns the logarithm of x with base 10. Return null for zero and non-positive input.

multiply(x, y) [same as x]

Returns the result of multiplying x by y. The types of x and y must be the same. For integral types, overflow results in an error. Corresponds to Spark’s operator *.

multiply(x, y) [decimal]

Returns the result of multiplying x by y. The types of x and y must be decimal which can be different precision and scale. The result type depends on the precision and scale of x and y. Overflow results return null. Corresponds to Spark’s operator *.

SELECT CAST(1 as DECIMAL(17, 3)) * CAST(2 as DECIMAL(17, 3)); -- decimal 2.000000
SELECT CAST(1 as DECIMAL(20, 3)) * CAST(20 as DECIMAL(20, 2)); -- decimal 20.00000
SELECT CAST(1 as DECIMAL(20, 3)) * CAST(0 as DECIMAL(20, 3)); -- decimal 0.000000
SELECT CAST(201e-38 as DECIMAL(38, 38)) * CAST(301e-38 as DECIMAL(38, 38)); -- decimal 0.0000000000000000000000000000000000000
not(x) boolean

Logical not.

SELECT not true; -- false
SELECT not false; -- true
SELECT not NULL; -- NULL
pmod(n, m) [same as n]

Returns the positive remainder of n divided by m. Supported types are: TINYINT, SMALLINT, INTEGER, BIGINT, REAL and DOUBLE.

power(x, p) double

Returns x raised to the power of p.

rand() double

Returns a random value with uniformly distributed values in [0, 1).

SELECT rand(); -- 0.9629742951434543
rand(seed) double

Returns a random value with uniformly distributed values in [0, 1) using a seed formed by combining user-specified seed and the configuration spark.partition_id. The framework is responsible for deterministic partitioning of the data and assigning unique spark.partition_id to each thread (in a deterministic way) . seed must be constant. NULL seed is identical to zero seed.

SELECT rand(0);    -- 0.5488135024422883
SELECT rand(NULL); -- 0.5488135024422883
random() double

An alias for rand().

random(seed) double

An alias for rand(seed).

remainder(n, m) [same as n]

Returns the modulus (remainder) of n divided by m. Corresponds to Spark’s operator %.

round(x, d) [same as x]

Returns x rounded to d decimal places using HALF_UP rounding mode. In HALF_UP rounding, the digit 5 is rounded up. Supported types for x are integral and floating point types.

sec(x) double

Returns the secant of x.

sinh(x) double

Returns hyperbolic sine of x.

subtract(x, y) [same as x]

Returns the result of subtracting y from x. The types of x and y must be the same. For integral types, overflow results in an error. Corresponds to Spark’s operator -.

subtract(x, y) decimal

Returns the result of subtracting y from x. Reuses the logic of add function for decimal type. Corresponds to Spark’s operator -.

SELECT CAST(1.1232100 as DECIMAL(38, 7)) - CAST(1 as DECIMAL(10, 0)); -- DECIMAL(38, 6) 0.123210
SELECT CAST(-999999999999999999999999999.999 as DECIMAL(30, 3)) - CAST(-999999999999999999999999999.999 as DECIMAL(30, 3)); -- DECIMAL(31, 3) 0.000
SELECT CAST(99999999999999999999999999999999.99998 as DECIMAL(38, 6)) - CAST(-0.00001 as DECIMAL(38, 5)); -- DECIMAL(38, 6) 99999999999999999999999999999999.999990
SELECT CAST(-99999999999999999999999999999999990.0 as DECIMAL(38, 3)) - CAST(0.00001 as DECIMAL(38, 7)); -- DECIMAL(38, 6) NULL
unaryminus(x) [same as x]

Returns the negative of x. Corresponds to Spark’s operator -.

unhex(x) varbinary

Converts hexadecimal varchar x to varbinary. x is considered case insensitive and expected to contain only hexadecimal characters 0-9 and A-F. If x contains non-hexadecimal character, the function returns NULL. When x contains an even number of characters, each pair is converted to a single byte. The number of bytes in the result is half the number of bytes in the input. When x contains an odd number of characters, the first character is decoded into the first byte of the result and the remaining pairs of characters are decoded into subsequent bytes. This behavior matches Spark 3.3.2 and newer.

SELECT unhex("23"); -- #
SELECT unhex("f"); -- \x0F
SELECT unhex("b2323"); -- \x0B##
SELECT unhex("G"); -- NULL
SELECT unhex("G23"); -- NULL