:orphan: .. _drop_statistics_for_columns: *************************** DROP STATISTICS FOR COLUMNS *************************** This command terminates an :ref:`analyze_table` execution. More about statistics under :ref:`cost_based_optimizer` Syntax ====== .. code-block:: postgres ALTER TABLE '' DROP STATISTICS FOR COLUMNS '' [, ...] Parameters ========== .. list-table:: :widths: auto :header-rows: 1 * - Parameter - Description - Parameter Type * - ``table_name`` - :ref:`Identifier` - Identifies the table for which to apply statistics * - ``column_name`` - :ref:`Identifier` - Identifies the column for which to apply statistics Examples ======== .. code-block:: postgres ALTER TABLE "nba" DROP STATISTICS FOR COLUMNS "number"; Permissions ===========