EXP: Returns a float, which is the exponential of the float value passed : EXP « Math Functions « SQL Server / T-SQL






EXP: Returns a float, which is the exponential of the float value passed


1> -- EXP: Returns a float, which is the exponential of the float value passed
2>
3> SELECT EXP(4)
4> GO

------------------------
      54.598150033144236

(1 rows affected)
1>
           
       








Related examples in the same category