SQLite sinh() 函数使用指南

来源:这里教程网 时间:2026-03-25 17:56:59 作者:

SQLite

sinh()
函数返回指定数值的双曲正弦。

sinh()
语法

这里是 SQLite

sinh()
函数的语法:

sinh(number)

参数

number
必需的。 一个用于计算双曲正弦的数值。

返回值

SQLite

sinh()
函数返回指定数值的双曲正弦。

如果参数

number
NULL
sinh()
函数将会返回
NULL

sinh()
示例

本示例展示了 SQLite

exp()
函数的基本用法:

SELECT    sinh(-1000),    sinh(-2.5),    sinh(-0.2),    sinh(0),    sinh(0.2),    sinh(2.5),    sinh(1000);

sinh(-1000) = -Inf sinh(-2.5) = -6.05020448103979 sinh(-0.2) = -0.201336002541094    sinh(0) = 0.0  sinh(0.2) = 0.201336002541094  sinh(2.5) = 6.05020448103979 sinh(1000) = Inf

相关推荐

热文推荐