Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.1 (中文) » UltraLite - 数据库管理和参考 » UltraLite SQL 参考 » UltraLite SQL 函数 » SQL 函数 (E-O)

 

EXP 函数 [Numeric]

返回指数函数,即 e 的指定数字次乘方。

语法
EXP( numeric-expression )
参数
  • numeric-expression   指数。

返回值

DOUBLE

注释

EXP 函数返回由 numeric-expression 指定的值的指数。

此函数将其参数转换为 DOUBLE,以双精度浮点执行计算,然后返回 DOUBLE 值作为结果。如果参数为 NULL,则结果为 NULL。

标准和兼容性
  • SQL/2003   服务商扩充。

示例

以下语句返回值 3269017.3724721107。

SELECT EXP( 15 );