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

DROP STATISTICS

DROP STATISTICS <refpurpose>remove extended statistics</refpurpose> — 拡張統計を削除する

概要

DROP STATISTICS [ IF EXISTS ] name [, ...] [ CASCADE | RESTRICT ]

説明

<title>Description</title>

<command>DROP STATISTICS</command> removes statistics object(s) from the database. Only the statistics object's owner, the schema owner, or a superuser can drop a statistics object. DROP STATISTICSはデータベースから統計オブジェクトを削除します。 統計オブジェクトの所有者、スキーマの所有者、あるいはスーパーユーザのみが統計オブジェクトを削除できます。

パラメータ

<title>Parameters</title>
IF EXISTS

Do not throw an error if the statistics object does not exist. A notice is issued in this case. 統計オブジェクトが存在しない場合でもエラーになりません。 この場合、注意メッセージが発行されます。

name

The name (optionally schema-qualified) of the statistics object to drop. 削除する統計オブジェクトの名前(オプションでスキーマ修飾可)です。

CASCADE
RESTRICT

These key words do not have any effect, since there are no dependencies on statistics. 統計には依存性がないので、これらのキーワードは何の効果もありません。

<title>Examples</title>

To destroy two statistics objects in different schemas, without failing if they don't exist: 別のスキーマにある2つの統計オブジェクトを削除し、それが存在しなくてもエラーにならないようにします。

DROP STATISTICS IF EXISTS
    accounting.users_uid_creation,
    public.grants_user_role;

互換性

<title>Compatibility</title>

There is no <command>DROP STATISTICS</command> command in the SQL standard. 標準SQLにはDROP STATISTICSコマンドはありません。

関連項目

<title>See Also</title> ALTER STATISTICS, CREATE STATISTICS