Movatterモバイル変換


[0]ホーム

URL:



Facebook
Postgres Pro
Facebook
Downloads
DROP RULE
Prev UpSQL CommandsHome Next

DROP RULE

DROP RULE — remove a rewrite rule

Synopsis

DROP RULE [ IF EXISTS ]name ONtable_name [ CASCADE | RESTRICT ]

Description

DROP RULE drops a rewrite rule.

Parameters

IF EXISTS

Do not throw an error if the rule does not exist. A notice is issued in this case.

name

The name of the rule to drop.

table_name

The name (optionally schema-qualified) of the table or view that the rule applies to.

CASCADE

Automatically drop objects that depend on the rule, and in turn all objects that depend on those objects (seeSection 5.15).

RESTRICT

Refuse to drop the rule if any objects depend on it. This is the default.

Examples

To drop the rewrite rulenewrule:

DROP RULE newrule ON mytable;

Compatibility

DROP RULE is aPostgres Pro language extension, as is the entire query rewrite system.


Prev Up Next
DROP ROUTINE Home DROP SCHEMA
pdfepub
Go to Postgres Pro Standard 17
By continuing to browse this website, you agree to the use of cookies. Go toPrivacy Policy.

[8]ページ先頭

©2009-2025 Movatter.jp