EXP
Description
Returns the exponential value of Euler (EXP in Transact-SQL).
Sample Source Pattern
Syntax
EXP( expression )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|Last updated
Was this helpful?