DROP POLICY DROP POLICY 7 SQL - Language Statements DROP POLICY remove a row-security policy from a table DROP POLICY [ IF EXISTS ] name ON table_name Description DROP POLICY removes the specified row-security policy from the table. Note that if the last policy is removed for a table and the table still has ROW POLICY enabled via ALTER TABLE, then the default-deny policy will be used. ALTER TABLE can be used to disable row security for a table using DISABLE ROW SECURITY, whether policies for the table exist or not. Parameters IF EXISTS Do not throw an error if the policy does not exist. A notice is issued in this case. name The name of the policy to drop. table_name The name (optionally schema-qualified) of the table that the policy is on. Examples To drop the row-security policy called p1 on the table named my_table: DROP POLICY p1 ON my_table; Compatibility DROP POLICY is a PostgreSQL extension. See Also