SINH()

Description

The SINH() function returns the hyperbolic sine of the input number(given in radians).

Syntax

  1. > SINH(number)

Arguments

ArgumentsDescription
numberRequired. Any numeric data type supported now.

Examples

  1. > drop table if exists t1;
  2. > create table t1(a int,b float);
  3. > insert into t1 values(1,3.14159),
  4. (-1,-3.14159);
  5. > select sinh(a), sinh(b) from t1;

Constraints

Currently, MatrixOne doesn’t support select function() without from tables.