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

# DROP DERIVED VIEW Statements

> Use DROP DERIVED VIEW statements to delete a derived view.

## DROP DERIVED VIEW Syntax

The DROP DERIVED VIEW statement accepts the name of the derived view to delete, as shown in the following example:

```sql theme={null}
DROP DERIVED VIEW [<view_name>]
```

The following query deletes the derived view MyView. It can no longer be used.

```sql theme={null}
DROP DERIVED VIEW [MyViewName]
```
