返回指数函数,即 e 的指定数字次乘方。
EXP( numeric-expression )
numeric-expression 指数。
DOUBLE
EXP 函数返回由 numeric-expression 指定的值的指数。
此函数将其参数转换为 DOUBLE,以双精度浮点执行计算,然后返回 DOUBLE 值作为结果。如果参数为 NULL,则结果为 NULL。
SQL/2003 服务商扩充。
以下语句返回值 3269017.3724721107。
SELECT EXP( 15 ); |
Copyright © 2009, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.1 |