SINH
Computes the hyperbolic sine of the input expression.
Syntax
SINH(numeric_expression int32) → double
numeric_expression: Input expression.
Examples
SELECT SINH(1)
-- 1.1752011936438014
SINH(numeric_expression float) → double
numeric_expression: Input expression.
Examples
SELECT SINH(1.5)
-- 2.1292794550948173
SINH(numeric_expression double) → double
numeric_expression: Input expression.
Examples
SELECT SINH(1.5)
-- 2.1292794550948173
SINH(numeric_expression int64) → double
numeric_expression: Input expression.
Examples
SELECT SINH(1)
-- 1.1752011936438014
Last updated
Was this helpful?