DROP RULE - remove a rewrite rule
Synopsis
DROP RULE name ON relation [ CASCADE | RESTRICT ]
DROP RULE drops a rewrite rule.
name The name of the rule to drop. relation The name (optionally schema-qualified) of the table or view that the rule applies to. CASCADE Automatically drop objects that depend on the rule. RESTRICT Refuse to drop the rule if any objects depend on it. This is the default.
To drop the rewrite rule newrule:
DROP RULE newrule ON mytable;
There is no DROP RULE statement in the SQL standard.
CREATE RULE [create_rule(7)]
SQL - Language Statements | DROP RULE () | 2010-12-14 |