CREATE RULE
CREATE RULE — define a new rewrite rule
Synopsis
CREATE [ OR REPLACE ] RULEname
AS ONevent
TOtable_name
[ WHEREcondition
] DO [ ALSO | INSTEAD ] { NOTHING |command
| (command
;command
... ) }whereevent
can be one of: SELECT | INSERT | UPDATE | DELETE
Description
CREATE RULE
defines a new rule applying to a specified table or view.CREATE OR REPLACE RULE
will either create a new rule, or replace an existing rule of the same name for the same table.
ThePostgres Pro rule system allows one to define an alternative action to be performed on insertions, updates, or deletions in database tables. Roughly speaking, a rule causes additional commands to be executed when a given command on a given table is executed. Alternatively, anINSTEAD
rule can replace a given command by another, or cause a command not to be executed at all. Rules are used to implement SQL views as well. It is important to realize that a rule is really a command transformation mechanism, or command macro. The transformation happens before the execution of the command starts. If you actually want an operation that fires independently for each physical row, you probably want to use a trigger, not a rule. More information about the rules system is inChapter 39.
Presently,ON SELECT
rules can only be attached to views. Such a rule must be named"_RETURN"
, must be an unconditionalINSTEAD
rule, and must have an action that consists of a singleSELECT
command. This command defines the visible contents of the view. (The view itself is basically a dummy table with no storage.) It's best to regard such a rule as an implementation detail. While a view can be redefined viaCREATE OR REPLACE RULE "_RETURN" AS ...
, it's better style to useCREATE OR REPLACE VIEW
.
You can create the illusion of an updatable view by definingON INSERT
,ON UPDATE
, andON DELETE
rules (or any subset of those that's sufficient for your purposes) to replace update actions on the view with appropriate updates on other tables. If you want to supportINSERT RETURNING
and so on, then be sure to put a suitableRETURNING
clause into each of these rules.
There is a catch if you try to use conditional rules for complex view updates: theremust be an unconditionalINSTEAD
rule for each action you wish to allow on the view. If the rule is conditional, or is notINSTEAD
, then the system will still reject attempts to perform the update action, because it thinks it might end up trying to perform the action on the dummy table of the view in some cases. If you want to handle all the useful cases in conditional rules, add an unconditionalDO INSTEAD NOTHING
rule to ensure that the system understands it will never be called on to update the dummy table. Then make the conditional rules non-INSTEAD
; in the cases where they are applied, they add to the defaultINSTEAD NOTHING
action. (This method does not currently work to supportRETURNING
queries, however.)
Note
A view that is simple enough to be automatically updatable (seeCREATE VIEW) does not require a user-created rule in order to be updatable. While you can create an explicit rule anyway, the automatic update transformation will generally outperform an explicit rule.
Another alternative worth considering is to useINSTEAD OF
triggers (seeCREATE TRIGGER) in place of rules.
Parameters
name
The name of a rule to create. This must be distinct from the name of any other rule for the same table. Multiple rules on the same table and same event type are applied in alphabetical name order.
event
The event is one of
SELECT
,INSERT
,UPDATE
, orDELETE
. Note that anINSERT
containing anON CONFLICT
clause cannot be used on tables that have eitherINSERT
orUPDATE
rules. Consider using an updatable view instead.table_name
The name (optionally schema-qualified) of the table or view the rule applies to.
condition
INSTEAD
INSTEAD
indicates that the commands should be executedinstead of the original command.ALSO
ALSO
indicates that the commands should be executedin addition to the original command.command
Notes
You must be the owner of a table to create or change rules for it.
CREATE RULE "_RETURN" AS ON SELECT TO t1 DO INSTEAD SELECT * FROM t2;CREATE RULE "_RETURN" AS ON SELECT TO t2 DO INSTEAD SELECT * FROM t1;SELECT * FROM t1;
CREATE RULE notify_me AS ON UPDATE TO mytable DO ALSO NOTIFY mytable;UPDATE mytable SET name = 'foo' WHERE id = 42;