Returns the exponential function, e to the power of a number.
EXP( numeric-expression )
numeric-expression The exponent.
DOUBLE
The EXP function returns the exponential of the value specified by numeric-expression.
This function converts its argument to DOUBLE, performs the computation in double-precision floating point, and returns a DOUBLE as the result. If the parameter is NULL, the result is NULL.
SQL/2003 Vendor extension.
The statement returns the value 3269017.3724721107.
SELECT EXP( 15 ); |
Discuss this page in DocCommentXchange. Send feedback about this page using email. |
Copyright © 2009, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.1 |