|
DROP RULENameDROP RULE — Removes an existing rule from the databaseDROP RULE name Inputs
Outputs
DescriptionDROP RULE drops a rule from the specified Postgres rule system. Postgres will immediately cease enforcing it and will purge its definition from the system catalogs. NotesThe DROP RULE statement is a Postgres language extension. Refer to CREATE RULE for information on how to create rules. Once a rule is dropped, access to historical information the rule has written may disappear. UsageTo drop the rewrite rule newrule: DROP RULE newrule; CompatibilitySQL92There is no DROP RULE in SQL92. |
|||||||||||||||||
With any suggestions or questions please feel free to contact us |