DROP RULE name
The name of an existing rule to drop.
Message returned if successfully.
This message occurs if the specified rule does not exist.
DROP RULE drops a rule from the specified PostgreSQL rule system. PostgreSQL will immediately cease enforcing it and will purge its definition from the system catalogs.
The DROP RULE statement is a PostgreSQL language extension.
Refer to the CREATE RULE statement for information on how to create rules.
Once a rule is dropped, access to historical information the rule has written may disappear.
To drop the rewrite rule newrule:
DROP RULE newrule
There is no DROP RULE statement in SQL92.