EXP()

Overview

Returns the value of e, the base of natural logarithms, raised to the given power.

USAGE

EXP(number)

Argument Name

Description

number

The number to manipulate

DETAILS

EXP() is a mathematical function that returns the value of e, the base of natural logarithms, raised to the power provided as the argument.

The return value is a DOUBLE. If the computed value does not fit in a that size, an error is returned.

A NULL is returned if the argument is NULL.

SYNONYMS

SCHEMA

PARAMETERS

SKYSQL

PRIVILEGES

EXAMPLES

SELECT EXP(1);
+----------------+
| EXP(1)         |
+----------------+
| 2.718281828459 |
+----------------+
SELECT EXP(0);
+--------+
| EXP(0) |
+--------+
|      1 |
+--------+
SELECT EXP(10000);

ERROR HANDLING

FEATURE INTERACTION

RESPONSES

DIAGNOSIS

ISO 9075:2016

CHANGE HISTORY

Release Series

History

23.09

  • Present starting in MariaDB Xpand 23.09.1.

6.1

  • Present starting in MariaDB Xpand 6.1.0.

6.0

  • Present starting in MariaDB Xpand 6.0.3.

5.3

  • Present starting in MariaDB Xpand 5.3.13.

Release Series

History

6.0

  • Present starting in MariaDB Xpand 6.0.3.

5.3

  • Present starting in MariaDB Xpand 5.3.13.

Release Series

History

6.1

  • Present starting in MariaDB Xpand 6.1.0.

EXTERNAL REFERENCES