EXP Functions calculates the exponential value of a parameter that has the float data type. This function’s return data type is float.
Below you can see how the EXP function behaves at different values.
1 2 3 4 5 |
SELECT EXP(2), EXP(1.3), EXP(3.4), EXP(-2), EXP(-1.3) |