Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
返回以自然对数的底数 e 为底数以给定的参数为指数的乘方运算结果。
EXP( numeric-expression )
numeric-expression 指数。
DOUBLE
EXP 函数返回以自然对数的底数 e 为底数以 numeric-expression 指定的值为指数的乘方运算结果。
此函数将其参数转换为 DOUBLE,以双精度浮点运算执行计算,然后返回 DOUBLE 值作为结果。如果参数为 NULL,则结果为 NULL。
SQL/2008 EXP 函数是可选 SQL/2008 语言功能 T621 "增强数字函数" 的一部分。
以下语句返回值 3269017.3724721107。
SELECT EXP( 15 );