4 DROP RULE — remove a rewrite rule
8 DROP RULE [ IF EXISTS ] name ON table_name [ CASCADE | RESTRICT ]
12 DROP RULE drops a rewrite rule.
17 Do not throw an error if the rule does not exist. A notice is
21 The name of the rule to drop.
24 The name (optionally schema-qualified) of the table or view that
28 Automatically drop objects that depend on the rule, and in turn
29 all objects that depend on those objects (see Section 5.15).
32 Refuse to drop the rule if any objects depend on it. This is the
37 To drop the rewrite rule newrule:
38 DROP RULE newrule ON mytable;
42 DROP RULE is a PostgreSQL language extension, as is the entire query
47 CREATE RULE, ALTER RULE