Function EXP

Function Description

Function EXP returns e to the nth power, where e = 2,718281828.

Examples

SELECT EXP(2)
  FROM dual;

Result: 7,38905609893065

SELECT EXP(1)
  FROM dual;

Result: 2,71828182845905

SELECT EXP(-2.5)
  FROM dual;

Result: 0,0820849986238988
This entry was posted in Oracle SQL Functions. Bookmark the permalink.