> ## 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.

> Reference and syntax for the DROP ENGINE command.

# DROP ENGINE

Deletes an engine.

## Syntax

```sql theme={"theme":{"light":"github-light","dark":"github-dark"}}
DROP ENGINE [IF EXISTS] <engine_name>
```

## Parameters

| Parameter       | Description                           |
| :-------------- | :------------------------------------ |
| `<engine_name>` | The name of the engine to be deleted. |

## Example

The following example drops my\_engine:

```sql theme={"theme":{"light":"github-light","dark":"github-dark"}}
DROP ENGINE my_engine
```
