DROP STATISTICS <refpurpose>remove extended statistics</refpurpose> — 拡張統計を削除する
DROP STATISTICS [ IF EXISTS ] name [, ...] [ CASCADE | RESTRICT ]
   <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はデータベースから統計オブジェクトを削除します。
統計オブジェクトの所有者、スキーマの所有者、あるいはスーパーユーザのみが統計オブジェクトを削除できます。
  
IF EXISTSDo not throw an error if the statistics object does not exist. A notice is issued in this case. 統計オブジェクトが存在しない場合でもエラーになりません。 この場合、注意メッセージが発行されます。
nameThe name (optionally schema-qualified) of the statistics object to drop. 削除する統計オブジェクトの名前(オプションでスキーマ修飾可)です。
CASCADERESTRICTThese key words do not have any effect, since there are no dependencies on statistics. 統計には依存性がないので、これらのキーワードは何の効果もありません。
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;
   There is no <command>DROP STATISTICS</command> command in the SQL standard.
標準SQLにはDROP STATISTICSコマンドはありません。