EXP (SQL Server Compact)

Returns the exponential value of the given float expression.

Syntax

EXP (float_expression)

Arguments

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

Return Value

float

Example

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;