Expand Minimize
This topic has not yet been rated - Rate this topic

EXP (SQL Server Compact)

Returns the exponential value of the given float expression.


EXP ( float_expression) 
float_expression

An expression of data types that can be implicitly converted to float.

The following example returns the exponential value of various float expressions.


CREATE TABLE Exponent ("EXP 5.5" float, "EXP 33.2" float);
INSERT INTO Exponent VALUES(EXP(5.5), EXP(33.2));
SELECT * FROM Exponent;
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.