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

# ALTER DERIVED VIEW ステートメント

> ALTER DERIVED VIEW ステートメントを使用して、派生ビューに新しい SQL クエリを割り当てます。

## ALTER DERIVED VIEW 構文

```bash theme={null}
ALTER DERIVED VIEW [<view_name>] AS <sql_query_contents>
```

次のクエリは、既存の派生ビュー MyViewName を新しい SQL クエリに変更します。

```bash theme={null}
ALTER DERIVED VIEW [MyViewName] AS SELECT * FROM Customers WHERE TimeModified > '3/1/2020';
```
