E
All functions > MATH > E
Returns the mathematical constant e (Euler's number).
Signatures
Returns: The value of e (approximately 2.718281828459045)
E() → DOUBLE sql
| Parameter | Type | Required | Description |
|---|
Notes
- e is the base of natural logarithms
- e ≈ 2.718281828459045
- Used in exponential and logarithmic calculations
LN(E()) = 1andEXP(1) = E()- Mathematical constant, same value every time
Examples
FeatureQL
SELECT
f1 := E() -- Euler's number constant
;Result
| f1 VARCHAR |
|---|
| 2.718281828459045 |
On this page