EXP() returns e raised to the nth power (n is the value), where e is equal to approximately 2.71828183. : EXP « Numeric Math Functions « Oracle PL / SQL






EXP() returns e raised to the nth power (n is the value), where e is equal to approximately 2.71828183.

 
SQL>
Syntax:EXP(<numeric expression>)
SQL>
SQL>
SQL> SELECT
  2     EXP(10) exponent from dual;

  EXPONENT
----------
22026.4658

SQL>
SQL>

 








Related examples in the same category

1.EXP(x):Returns the result of the number e raised to the power x
2.EXP: Returns e raised to a value
3.EXP(2)