Euler function
The e function returns the value of Euler number e, that is, 2.718281828459045.
Syntax:
double e()
Semantics:
-
The
efunction does not expect any input arguments. -
return type: double.
Example 1 - Euler function
SELECT e() AS EULER FROM Archery
Output:
+-----------+-------------------+
| EULER | 2.718281828459045 |
+-----------+-------------------+