Loading lesson path
Concept visual
Start at both ends
raised to the power of 1:
SELECT EXP(1);The EXP() function returns e raised to the power of a specified number. The constant e (2.718281...), is the base of natural logarithms.
See also the LOG() function.
number )
Required. The power number
SQL Server (starting with 2008), Azure SQL Database, Azure SQL Data Warehouse, Parallel Data Warehouse
raised to the power of 2:
SELECT EXP(2);❮ SQL Server Functions