バージョンごとのドキュメント一覧

DROP CAST

DROP CAST <refpurpose>remove a cast</refpurpose> — キャストを削除する

概要

DROP CAST [ IF EXISTS ] (source_type AS target_type) [ CASCADE | RESTRICT ]

説明

<title>Description</title>

<command>DROP CAST</command> removes a previously defined cast. DROP CASTは、以前に定義したキャストを削除します。

To be able to drop a cast, you must own the source or the target data type. These are the same privileges that are required to create a cast. キャストを削除するには、変換元または変換先のデータ型を所有している必要があります。 これらは、キャストを作成するために必要な権限と同じです。

パラメータ

<title>Parameters</title>
IF EXISTS

Do not throw an error if the cast does not exist. A notice is issued in this case. キャストが存在しない場合でもエラーになりません。 この場合注意メッセージが発行されます。

source_type

The name of the source data type of the cast. キャストする変換元のデータ型の名前です。

target_type

The name of the target data type of the cast. キャストする変換先のデータ型の名前です。

CASCADE
RESTRICT

These key words do not have any effect, since there are no dependencies on casts. キャストは依存関係を持たないため、これらのキーワードを指定しても効果はありません。

<title>Examples</title>

To drop the cast from type <type>text</type> to type <type>int</type>: text型からint型へのキャストを削除します。

DROP CAST (text AS int);

互換性

<title>Compatibility</title>

The <command>DROP CAST</command> command conforms to the SQL standard. DROP CASTコマンドは、標準SQLに準拠しています。

関連項目

<title>See Also</title> CREATE CAST