> ## 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 ステートメント

> 派生ビューを削除するには、DROP DERIVED VIEW ステートメントを使用します。

## DROP DERIVED VIEW 構文

DROP DERIVED VIEW ステートメントでは、削除する派生ビューの名前を指定します。以下の例を参照してください。

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

次のクエリは派生ビュー MyView を削除します。削除後はこのビューを使用できなくなります。

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