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), (-1,-3.14159);
  4. mysql> select sinh(a), sinh(b) from t1;
  5. +---------------------+---------------------+
  6. | sinh(a) | sinh(b) |
  7. +---------------------+---------------------+
  8. | 1.1752011936438014 | 11.548709969588323 |
  9. | -1.1752011936438014 | -11.548709969588323 |
  10. +---------------------+---------------------+
  11. 2 rows in set (0.00 sec)