Description
Returns the exponential value of Euler ().
Sample Source Pattern
Syntax
Arguments
expression
: Numeric expression.
Return Type
Same data type sent through parameter as a numeric expression.
Examples
SELECT EXP(LOG(20)), LOG(EXP(20))
GO
EXP(LOG(20)) |LOG(EXP(20)) |
---------------+----------------+
20.0| 20.0|