> ## Documentation Index
> Fetch the complete documentation index at: https://firebolt-aggregate-helm-docs-pr-4.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> Reference material for CURRENT_ENGINE function

# CURRENT_ENGINE

Returns the current engine name.
Returns `system` on the [system engine](/guides/operate-engines/system-engine).

## Syntax

```sql theme={null}
CURRENT_ENGINE()
```

## Return Types

`TEXT`

## Example

<div className="query-window">
  ```
  SELECT CURRENT_ENGINE() as engine;
  ```

  | engine <span>text</span> |
  | :----------------------- |
  | demo\_engine             |

  <p><span>Rows: 1</span><span>Execution time: 5.60ms</span></p>
</div>
