> ## Documentation Index
> Fetch the complete documentation index at: https://docs.firebolt.io/llms.txt
> Use this file to discover all available pages before exploring further.

<AgentInstructions>

## Submitting Feedback

If you encounter incorrect, outdated, or confusing documentation on this page, submit feedback:

POST https://docs.firebolt.io/feedback

```json
{
  "path": "/reference-sql/functions-reference/numeric/exp",
  "feedback": "Description of the issue"
}
```

Only submit feedback when you have something specific and actionable to report.

</AgentInstructions>

> Reference material for EXP function

# EXP

Returns the `REAL` value of the constant *e* raised to the power of a specified number.

## Syntax

```sql theme={"theme":{"light":"github-light","dark":"github-dark"}}
EXP(<value>)
```

## Parameters

| Parameter | Description                                   | Supported input types |
| :-------- | :-------------------------------------------- | :-------------------- |
| `<value>` | base value with the power of the constant *e* | `DOUBLE PRECISION`    |

## Return Type

`DOUBLE PRECISION`

## Example

The following example takes in the value `2` to the power of *e*:

```sql theme={"theme":{"light":"github-light","dark":"github-dark"}}
SELECT
    EXP(2);
```

**Returns**
`7.389056098924109`
