SINH

This page describes the SINH function in Lenses SQL.

SINH(numExpr)

Returns the hyperbolic sine of an expression.

Available in:

Processors
SQL Studio

Sample code:

USE `kafka`;
SELECT 
    SINH(float), 
    float 
FROM numbers-data
LIMIT 1;

Output:

{
  "value": {
    "SINH": "2.3416691959782676E41",
    "float": 95.95
  }
}

Last updated

Was this helpful?