gooderp18绿色标准版
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

445 lines
32KB

  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>CREATE TRIGGER</title><link rel="stylesheet" type="text/css" href="stylesheet.css" /><link rev="made" href="pgsql-docs@lists.postgresql.org" /><meta name="generator" content="DocBook XSL Stylesheets V1.79.1" /><link rel="prev" href="sql-createtransform.html" title="CREATE TRANSFORM" /><link rel="next" href="sql-createtype.html" title="CREATE TYPE" /></head><body><div xmlns="http://www.w3.org/TR/xhtml1/transitional" class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="5" align="center">CREATE TRIGGER</th></tr><tr><td width="10%" align="left"><a accesskey="p" href="sql-createtransform.html" title="CREATE TRANSFORM">Prev</a> </td><td width="10%" align="left"><a accesskey="u" href="sql-commands.html" title="SQL Commands">Up</a></td><th width="60%" align="center">SQL Commands</th><td width="10%" align="right"><a accesskey="h" href="index.html" title="PostgreSQL 12.4 Documentation">Home</a></td><td width="10%" align="right"> <a accesskey="n" href="sql-createtype.html" title="CREATE TYPE">Next</a></td></tr></table><hr></hr></div><div class="refentry" id="SQL-CREATETRIGGER"><div class="titlepage"></div><a id="id-1.9.3.93.1" class="indexterm"></a><a id="id-1.9.3.93.2" class="indexterm"></a><div class="refnamediv"><h2><span class="refentrytitle">CREATE TRIGGER</span></h2><p>CREATE TRIGGER — define a new trigger</p></div><div class="refsynopsisdiv"><h2>Synopsis</h2><pre class="synopsis">
  3. CREATE [ CONSTRAINT ] TRIGGER <em class="replaceable"><code>name</code></em> { BEFORE | AFTER | INSTEAD OF } { <em class="replaceable"><code>event</code></em> [ OR ... ] }
  4. ON <em class="replaceable"><code>table_name</code></em>
  5. [ FROM <em class="replaceable"><code>referenced_table_name</code></em> ]
  6. [ NOT DEFERRABLE | [ DEFERRABLE ] [ INITIALLY IMMEDIATE | INITIALLY DEFERRED ] ]
  7. [ REFERENCING { { OLD | NEW } TABLE [ AS ] <em class="replaceable"><code>transition_relation_name</code></em> } [ ... ] ]
  8. [ FOR [ EACH ] { ROW | STATEMENT } ]
  9. [ WHEN ( <em class="replaceable"><code>condition</code></em> ) ]
  10. EXECUTE { FUNCTION | PROCEDURE } <em class="replaceable"><code>function_name</code></em> ( <em class="replaceable"><code>arguments</code></em> )
  11. <span class="phrase">where <em class="replaceable"><code>event</code></em> can be one of:</span>
  12. INSERT
  13. UPDATE [ OF <em class="replaceable"><code>column_name</code></em> [, ... ] ]
  14. DELETE
  15. TRUNCATE
  16. </pre></div><div class="refsect1" id="id-1.9.3.93.6"><h2>Description</h2><p>
  17. <code class="command">CREATE TRIGGER</code> creates a new trigger. The
  18. trigger will be associated with the specified table, view, or foreign table
  19. and will execute the specified
  20. function <em class="replaceable"><code>function_name</code></em> when
  21. certain operations are performed on that table.
  22. </p><p>
  23. The trigger can be specified to fire before the
  24. operation is attempted on a row (before constraints are checked and
  25. the <code class="command">INSERT</code>, <code class="command">UPDATE</code>, or
  26. <code class="command">DELETE</code> is attempted); or after the operation has
  27. completed (after constraints are checked and the
  28. <code class="command">INSERT</code>, <code class="command">UPDATE</code>, or
  29. <code class="command">DELETE</code> has completed); or instead of the operation
  30. (in the case of inserts, updates or deletes on a view).
  31. If the trigger fires before or instead of the event, the trigger can skip
  32. the operation for the current row, or change the row being inserted (for
  33. <code class="command">INSERT</code> and <code class="command">UPDATE</code> operations
  34. only). If the trigger fires after the event, all changes, including
  35. the effects of other triggers, are <span class="quote">“<span class="quote">visible</span>”</span>
  36. to the trigger.
  37. </p><p>
  38. A trigger that is marked <code class="literal">FOR EACH ROW</code> is called
  39. once for every row that the operation modifies. For example, a
  40. <code class="command">DELETE</code> that affects 10 rows will cause any
  41. <code class="literal">ON DELETE</code> triggers on the target relation to be
  42. called 10 separate times, once for each deleted row. In contrast, a
  43. trigger that is marked <code class="literal">FOR EACH STATEMENT</code> only
  44. executes once for any given operation, regardless of how many rows
  45. it modifies (in particular, an operation that modifies zero rows
  46. will still result in the execution of any applicable <code class="literal">FOR
  47. EACH STATEMENT</code> triggers).
  48. </p><p>
  49. Triggers that are specified to fire <code class="literal">INSTEAD OF</code> the trigger
  50. event must be marked <code class="literal">FOR EACH ROW</code>, and can only be defined
  51. on views. <code class="literal">BEFORE</code> and <code class="literal">AFTER</code> triggers on a view
  52. must be marked as <code class="literal">FOR EACH STATEMENT</code>.
  53. </p><p>
  54. In addition, triggers may be defined to fire for
  55. <code class="command">TRUNCATE</code>, though only
  56. <code class="literal">FOR EACH STATEMENT</code>.
  57. </p><p>
  58. The following table summarizes which types of triggers may be used on
  59. tables, views, and foreign tables:
  60. </p><div class="informaltable" id="SUPPORTED-TRIGGER-TYPES"><table class="informaltable" border="1"><colgroup><col /><col /><col /><col /></colgroup><thead><tr><th>When</th><th>Event</th><th>Row-level</th><th>Statement-level</th></tr></thead><tbody><tr><td rowspan="2" align="center"><code class="literal">BEFORE</code></td><td align="center"><code class="command">INSERT</code>/<code class="command">UPDATE</code>/<code class="command">DELETE</code></td><td align="center">Tables and foreign tables</td><td align="center">Tables, views, and foreign tables</td></tr><tr><td align="center"><code class="command">TRUNCATE</code></td><td align="center">—</td><td align="center">Tables</td></tr><tr><td rowspan="2" align="center"><code class="literal">AFTER</code></td><td align="center"><code class="command">INSERT</code>/<code class="command">UPDATE</code>/<code class="command">DELETE</code></td><td align="center">Tables and foreign tables</td><td align="center">Tables, views, and foreign tables</td></tr><tr><td align="center"><code class="command">TRUNCATE</code></td><td align="center">—</td><td align="center">Tables</td></tr><tr><td rowspan="2" align="center"><code class="literal">INSTEAD OF</code></td><td align="center"><code class="command">INSERT</code>/<code class="command">UPDATE</code>/<code class="command">DELETE</code></td><td align="center">Views</td><td align="center">—</td></tr><tr><td align="center"><code class="command">TRUNCATE</code></td><td align="center">—</td><td align="center">—</td></tr></tbody></table></div><p>
  61. Also, a trigger definition can specify a Boolean <code class="literal">WHEN</code>
  62. condition, which will be tested to see whether the trigger should
  63. be fired. In row-level triggers the <code class="literal">WHEN</code> condition can
  64. examine the old and/or new values of columns of the row. Statement-level
  65. triggers can also have <code class="literal">WHEN</code> conditions, although the feature
  66. is not so useful for them since the condition cannot refer to any values
  67. in the table.
  68. </p><p>
  69. If multiple triggers of the same kind are defined for the same event,
  70. they will be fired in alphabetical order by name.
  71. </p><p>
  72. When the <code class="literal">CONSTRAINT</code> option is specified, this command creates a
  73. <em class="firstterm">constraint trigger</em>. This is the same as a regular trigger
  74. except that the timing of the trigger firing can be adjusted using
  75. <a class="xref" href="sql-set-constraints.html" title="SET CONSTRAINTS"><span class="refentrytitle">SET CONSTRAINTS</span></a>.
  76. Constraint triggers must be <code class="literal">AFTER ROW</code> triggers on plain
  77. tables (not foreign tables). They
  78. can be fired either at the end of the statement causing the triggering
  79. event, or at the end of the containing transaction; in the latter case they
  80. are said to be <em class="firstterm">deferred</em>. A pending deferred-trigger firing
  81. can also be forced to happen immediately by using <code class="command">SET
  82. CONSTRAINTS</code>. Constraint triggers are expected to raise an exception
  83. when the constraints they implement are violated.
  84. </p><p>
  85. The <code class="literal">REFERENCING</code> option enables collection
  86. of <em class="firstterm">transition relations</em>, which are row sets that include all
  87. of the rows inserted, deleted, or modified by the current SQL statement.
  88. This feature lets the trigger see a global view of what the statement did,
  89. not just one row at a time. This option is only allowed for
  90. an <code class="literal">AFTER</code> trigger that is not a constraint trigger; also, if
  91. the trigger is an <code class="literal">UPDATE</code> trigger, it must not specify
  92. a <em class="replaceable"><code>column_name</code></em> list.
  93. <code class="literal">OLD TABLE</code> may only be specified once, and only for a trigger
  94. that can fire on <code class="literal">UPDATE</code> or <code class="literal">DELETE</code>; it creates a
  95. transition relation containing the <em class="firstterm">before-images</em> of all rows
  96. updated or deleted by the statement.
  97. Similarly, <code class="literal">NEW TABLE</code> may only be specified once, and only for
  98. a trigger that can fire on <code class="literal">UPDATE</code> or <code class="literal">INSERT</code>;
  99. it creates a transition relation containing the <em class="firstterm">after-images</em>
  100. of all rows updated or inserted by the statement.
  101. </p><p>
  102. <code class="command">SELECT</code> does not modify any rows so you cannot
  103. create <code class="command">SELECT</code> triggers. Rules and views may provide
  104. workable solutions to problems that seem to need <code class="command">SELECT</code>
  105. triggers.
  106. </p><p>
  107. Refer to <a class="xref" href="triggers.html" title="Chapter 38. Triggers">Chapter 38</a> for more information about triggers.
  108. </p></div><div class="refsect1" id="id-1.9.3.93.7"><h2>Parameters</h2><div class="variablelist"><dl class="variablelist"><dt><span class="term"><em class="replaceable"><code>name</code></em></span></dt><dd><p>
  109. The name to give the new trigger. This must be distinct from
  110. the name of any other trigger for the same table.
  111. The name cannot be schema-qualified — the trigger inherits the
  112. schema of its table. For a constraint trigger, this is also the name to
  113. use when modifying the trigger's behavior using
  114. <code class="command">SET CONSTRAINTS</code>.
  115. </p></dd><dt><span class="term"><code class="literal">BEFORE</code><br /></span><span class="term"><code class="literal">AFTER</code><br /></span><span class="term"><code class="literal">INSTEAD OF</code></span></dt><dd><p>
  116. Determines whether the function is called before, after, or instead of
  117. the event. A constraint trigger can only be specified as
  118. <code class="literal">AFTER</code>.
  119. </p></dd><dt><span class="term"><em class="replaceable"><code>event</code></em></span></dt><dd><p>
  120. One of <code class="literal">INSERT</code>, <code class="literal">UPDATE</code>,
  121. <code class="literal">DELETE</code>, or <code class="literal">TRUNCATE</code>;
  122. this specifies the event that will fire the trigger. Multiple
  123. events can be specified using <code class="literal">OR</code>, except when
  124. transition relations are requested.
  125. </p><p>
  126. For <code class="literal">UPDATE</code> events, it is possible to
  127. specify a list of columns using this syntax:
  128. </p><pre class="synopsis">
  129. UPDATE OF <em class="replaceable"><code>column_name1</code></em> [, <em class="replaceable"><code>column_name2</code></em> ... ]
  130. </pre><p>
  131. The trigger will only fire if at least one of the listed columns
  132. is mentioned as a target of the <code class="command">UPDATE</code> command
  133. or if one of the listed columns is a generated column that depends on a
  134. column that is the target of the <code class="command">UPDATE</code>.
  135. </p><p>
  136. <code class="literal">INSTEAD OF UPDATE</code> events do not allow a list of columns.
  137. A column list cannot be specified when requesting transition relations,
  138. either.
  139. </p></dd><dt><span class="term"><em class="replaceable"><code>table_name</code></em></span></dt><dd><p>
  140. The name (optionally schema-qualified) of the table, view, or foreign
  141. table the trigger is for.
  142. </p></dd><dt><span class="term"><em class="replaceable"><code>referenced_table_name</code></em></span></dt><dd><p>
  143. The (possibly schema-qualified) name of another table referenced by the
  144. constraint. This option is used for foreign-key constraints and is not
  145. recommended for general use. This can only be specified for
  146. constraint triggers.
  147. </p></dd><dt><span class="term"><code class="literal">DEFERRABLE</code><br /></span><span class="term"><code class="literal">NOT DEFERRABLE</code><br /></span><span class="term"><code class="literal">INITIALLY IMMEDIATE</code><br /></span><span class="term"><code class="literal">INITIALLY DEFERRED</code></span></dt><dd><p>
  148. The default timing of the trigger.
  149. See the <a class="xref" href="sql-createtable.html" title="CREATE TABLE"><span class="refentrytitle">CREATE TABLE</span></a> documentation for details of
  150. these constraint options. This can only be specified for constraint
  151. triggers.
  152. </p></dd><dt><span class="term"><code class="literal">REFERENCING</code></span></dt><dd><p>
  153. This keyword immediately precedes the declaration of one or two
  154. relation names that provide access to the transition relations of the
  155. triggering statement.
  156. </p></dd><dt><span class="term"><code class="literal">OLD TABLE</code><br /></span><span class="term"><code class="literal">NEW TABLE</code></span></dt><dd><p>
  157. This clause indicates whether the following relation name is for the
  158. before-image transition relation or the after-image transition
  159. relation.
  160. </p></dd><dt><span class="term"><em class="replaceable"><code>transition_relation_name</code></em></span></dt><dd><p>
  161. The (unqualified) name to be used within the trigger for this
  162. transition relation.
  163. </p></dd><dt><span class="term"><code class="literal">FOR EACH ROW</code><br /></span><span class="term"><code class="literal">FOR EACH STATEMENT</code></span></dt><dd><p>
  164. This specifies whether the trigger function should be fired
  165. once for every row affected by the trigger event, or just once
  166. per SQL statement. If neither is specified, <code class="literal">FOR EACH
  167. STATEMENT</code> is the default. Constraint triggers can only
  168. be specified <code class="literal">FOR EACH ROW</code>.
  169. </p></dd><dt><span class="term"><em class="replaceable"><code>condition</code></em></span></dt><dd><p>
  170. A Boolean expression that determines whether the trigger function
  171. will actually be executed. If <code class="literal">WHEN</code> is specified, the
  172. function will only be called if the <em class="replaceable"><code>condition</code></em> returns <code class="literal">true</code>.
  173. In <code class="literal">FOR EACH ROW</code> triggers, the <code class="literal">WHEN</code>
  174. condition can refer to columns of the old and/or new row values
  175. by writing <code class="literal">OLD.<em class="replaceable"><code>column_name</code></em></code> or
  176. <code class="literal">NEW.<em class="replaceable"><code>column_name</code></em></code> respectively.
  177. Of course, <code class="literal">INSERT</code> triggers cannot refer to <code class="literal">OLD</code>
  178. and <code class="literal">DELETE</code> triggers cannot refer to <code class="literal">NEW</code>.
  179. </p><p><code class="literal">INSTEAD OF</code> triggers do not support <code class="literal">WHEN</code>
  180. conditions.
  181. </p><p>
  182. Currently, <code class="literal">WHEN</code> expressions cannot contain
  183. subqueries.
  184. </p><p>
  185. Note that for constraint triggers, evaluation of the <code class="literal">WHEN</code>
  186. condition is not deferred, but occurs immediately after the row update
  187. operation is performed. If the condition does not evaluate to true then
  188. the trigger is not queued for deferred execution.
  189. </p></dd><dt><span class="term"><em class="replaceable"><code>function_name</code></em></span></dt><dd><p>
  190. A user-supplied function that is declared as taking no arguments
  191. and returning type <code class="literal">trigger</code>, which is executed when
  192. the trigger fires.
  193. </p><p>
  194. In the syntax of <code class="literal">CREATE TRIGGER</code>, the keywords
  195. <code class="literal">FUNCTION</code> and <code class="literal">PROCEDURE</code> are
  196. equivalent, but the referenced function must in any case be a function,
  197. not a procedure. The use of the keyword <code class="literal">PROCEDURE</code>
  198. here is historical and deprecated.
  199. </p></dd><dt><span class="term"><em class="replaceable"><code>arguments</code></em></span></dt><dd><p>
  200. An optional comma-separated list of arguments to be provided to
  201. the function when the trigger is executed. The arguments are
  202. literal string constants. Simple names and numeric constants
  203. can be written here, too, but they will all be converted to
  204. strings. Please check the description of the implementation
  205. language of the trigger function to find out how these arguments
  206. can be accessed within the function; it might be different from
  207. normal function arguments.
  208. </p></dd></dl></div></div><div class="refsect1" id="SQL-CREATETRIGGER-NOTES"><h2>Notes</h2><p>
  209. To create a trigger on a table, the user must have the
  210. <code class="literal">TRIGGER</code> privilege on the table. The user must
  211. also have <code class="literal">EXECUTE</code> privilege on the trigger function.
  212. </p><p>
  213. Use <a class="xref" href="sql-droptrigger.html" title="DROP TRIGGER"><span class="refentrytitle">DROP TRIGGER</span></a> to remove a trigger.
  214. </p><p>
  215. A column-specific trigger (one defined using the <code class="literal">UPDATE OF
  216. <em class="replaceable"><code>column_name</code></em></code> syntax) will fire when any
  217. of its columns are listed as targets in the <code class="command">UPDATE</code>
  218. command's <code class="literal">SET</code> list. It is possible for a column's value
  219. to change even when the trigger is not fired, because changes made to the
  220. row's contents by <code class="literal">BEFORE UPDATE</code> triggers are not considered.
  221. Conversely, a command such as <code class="literal">UPDATE ... SET x = x ...</code>
  222. will fire a trigger on column <code class="literal">x</code>, even though the column's
  223. value did not change.
  224. </p><p>
  225. There are a few built-in trigger functions that can be used to
  226. solve common problems without having to write your own trigger code;
  227. see <a class="xref" href="functions-trigger.html" title="9.27. Trigger Functions">Section 9.27</a>.
  228. </p><p>
  229. In a <code class="literal">BEFORE</code> trigger, the <code class="literal">WHEN</code> condition is
  230. evaluated just before the function is or would be executed, so using
  231. <code class="literal">WHEN</code> is not materially different from testing the same
  232. condition at the beginning of the trigger function. Note in particular
  233. that the <code class="literal">NEW</code> row seen by the condition is the current value,
  234. as possibly modified by earlier triggers. Also, a <code class="literal">BEFORE</code>
  235. trigger's <code class="literal">WHEN</code> condition is not allowed to examine the
  236. system columns of the <code class="literal">NEW</code> row (such as <code class="literal">ctid</code>),
  237. because those won't have been set yet.
  238. </p><p>
  239. In an <code class="literal">AFTER</code> trigger, the <code class="literal">WHEN</code> condition is
  240. evaluated just after the row update occurs, and it determines whether an
  241. event is queued to fire the trigger at the end of statement. So when an
  242. <code class="literal">AFTER</code> trigger's <code class="literal">WHEN</code> condition does not return
  243. true, it is not necessary to queue an event nor to re-fetch the row at end
  244. of statement. This can result in significant speedups in statements that
  245. modify many rows, if the trigger only needs to be fired for a few of the
  246. rows.
  247. </p><p>
  248. In some cases it is possible for a single SQL command to fire more than
  249. one kind of trigger. For instance an <code class="command">INSERT</code> with
  250. an <code class="literal">ON CONFLICT DO UPDATE</code> clause may cause both insert and
  251. update operations, so it will fire both kinds of triggers as needed.
  252. The transition relations supplied to triggers are
  253. specific to their event type; thus an <code class="command">INSERT</code> trigger
  254. will see only the inserted rows, while an <code class="command">UPDATE</code>
  255. trigger will see only the updated rows.
  256. </p><p>
  257. Row updates or deletions caused by foreign-key enforcement actions, such
  258. as <code class="literal">ON UPDATE CASCADE</code> or <code class="literal">ON DELETE SET NULL</code>, are
  259. treated as part of the SQL command that caused them (note that such
  260. actions are never deferred). Relevant triggers on the affected table will
  261. be fired, so that this provides another way in which a SQL command might
  262. fire triggers not directly matching its type. In simple cases, triggers
  263. that request transition relations will see all changes caused in their
  264. table by a single original SQL command as a single transition relation.
  265. However, there are cases in which the presence of an <code class="literal">AFTER ROW</code>
  266. trigger that requests transition relations will cause the foreign-key
  267. enforcement actions triggered by a single SQL command to be split into
  268. multiple steps, each with its own transition relation(s). In such cases,
  269. any statement-level triggers that are present will be fired once per
  270. creation of a transition relation set, ensuring that the triggers see
  271. each affected row in a transition relation once and only once.
  272. </p><p>
  273. Statement-level triggers on a view are fired only if the action on the
  274. view is handled by a row-level <code class="literal">INSTEAD OF</code> trigger.
  275. If the action is handled by an <code class="literal">INSTEAD</code> rule, then
  276. whatever statements are emitted by the rule are executed in place of the
  277. original statement naming the view, so that the triggers that will be
  278. fired are those on tables named in the replacement statements.
  279. Similarly, if the view is automatically updatable, then the action is
  280. handled by automatically rewriting the statement into an action on the
  281. view's base table, so that the base table's statement-level triggers are
  282. the ones that are fired.
  283. </p><p>
  284. Creating a row-level trigger on a partitioned table will cause identical
  285. triggers to be created in all its existing partitions; and any partitions
  286. created or attached later will contain an identical trigger, too.
  287. If the partition is detached from its parent, the trigger is removed.
  288. Triggers on partitioned tables may only be <code class="literal">AFTER</code>.
  289. </p><p>
  290. Modifying a partitioned table or a table with inheritance children fires
  291. statement-level triggers attached to the explicitly named table, but not
  292. statement-level triggers for its partitions or child tables. In contrast,
  293. row-level triggers are fired on the rows in affected partitions or
  294. child tables, even if they are not explicitly named in the query.
  295. If a statement-level trigger has been defined with transition relations
  296. named by a <code class="literal">REFERENCING</code> clause, then before and after
  297. images of rows are visible from all affected partitions or child tables.
  298. In the case of inheritance children, the row images include only columns
  299. that are present in the table that the trigger is attached to. Currently,
  300. row-level triggers with transition relations cannot be defined on
  301. partitions or inheritance child tables.
  302. </p><p>
  303. In <span class="productname">PostgreSQL</span> versions before 7.3, it was
  304. necessary to declare trigger functions as returning the placeholder
  305. type <code class="type">opaque</code>, rather than <code class="type">trigger</code>. To support loading
  306. of old dump files, <code class="command">CREATE TRIGGER</code> will accept a function
  307. declared as returning <code class="type">opaque</code>, but it will issue a notice and
  308. change the function's declared return type to <code class="type">trigger</code>.
  309. </p></div><div class="refsect1" id="SQL-CREATETRIGGER-EXAMPLES"><h2>Examples</h2><p>
  310. Execute the function <code class="function">check_account_update</code> whenever
  311. a row of the table <code class="literal">accounts</code> is about to be updated:
  312. </p><pre class="programlisting">
  313. CREATE TRIGGER check_update
  314. BEFORE UPDATE ON accounts
  315. FOR EACH ROW
  316. EXECUTE FUNCTION check_account_update();
  317. </pre><p>
  318. The same, but only execute the function if column <code class="literal">balance</code>
  319. is specified as a target in the <code class="command">UPDATE</code> command:
  320. </p><pre class="programlisting">
  321. CREATE TRIGGER check_update
  322. BEFORE UPDATE OF balance ON accounts
  323. FOR EACH ROW
  324. EXECUTE FUNCTION check_account_update();
  325. </pre><p>
  326. This form only executes the function if column <code class="literal">balance</code>
  327. has in fact changed value:
  328. </p><pre class="programlisting">
  329. CREATE TRIGGER check_update
  330. BEFORE UPDATE ON accounts
  331. FOR EACH ROW
  332. WHEN (OLD.balance IS DISTINCT FROM NEW.balance)
  333. EXECUTE FUNCTION check_account_update();
  334. </pre><p>
  335. Call a function to log updates of <code class="literal">accounts</code>, but only if
  336. something changed:
  337. </p><pre class="programlisting">
  338. CREATE TRIGGER log_update
  339. AFTER UPDATE ON accounts
  340. FOR EACH ROW
  341. WHEN (OLD.* IS DISTINCT FROM NEW.*)
  342. EXECUTE FUNCTION log_account_update();
  343. </pre><p>
  344. Execute the function <code class="function">view_insert_row</code> for each row to insert
  345. rows into the tables underlying a view:
  346. </p><pre class="programlisting">
  347. CREATE TRIGGER view_insert
  348. INSTEAD OF INSERT ON my_view
  349. FOR EACH ROW
  350. EXECUTE FUNCTION view_insert_row();
  351. </pre><p>
  352. Execute the function <code class="function">check_transfer_balances_to_zero</code> for each
  353. statement to confirm that the <code class="literal">transfer</code> rows offset to a net of
  354. zero:
  355. </p><pre class="programlisting">
  356. CREATE TRIGGER transfer_insert
  357. AFTER INSERT ON transfer
  358. REFERENCING NEW TABLE AS inserted
  359. FOR EACH STATEMENT
  360. EXECUTE FUNCTION check_transfer_balances_to_zero();
  361. </pre><p>
  362. Execute the function <code class="function">check_matching_pairs</code> for each row to
  363. confirm that changes are made to matching pairs at the same time (by the
  364. same statement):
  365. </p><pre class="programlisting">
  366. CREATE TRIGGER paired_items_update
  367. AFTER UPDATE ON paired_items
  368. REFERENCING NEW TABLE AS newtab OLD TABLE AS oldtab
  369. FOR EACH ROW
  370. EXECUTE FUNCTION check_matching_pairs();
  371. </pre><p>
  372. </p><p>
  373. <a class="xref" href="trigger-example.html" title="38.4. A Complete Trigger Example">Section 38.4</a> contains a complete example of a trigger
  374. function written in C.
  375. </p></div><div class="refsect1" id="SQL-CREATETRIGGER-COMPATIBILITY"><h2>Compatibility</h2><p>
  376. The <code class="command">CREATE TRIGGER</code> statement in
  377. <span class="productname">PostgreSQL</span> implements a subset of the
  378. <acronym class="acronym">SQL</acronym> standard. The following functionalities are currently
  379. missing:
  380. </p><div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "><li class="listitem"><p>
  381. While transition table names for <code class="literal">AFTER</code> triggers are
  382. specified using the <code class="literal">REFERENCING</code> clause in the standard way,
  383. the row variables used in <code class="literal">FOR EACH ROW</code> triggers may not be
  384. specified in a <code class="literal">REFERENCING</code> clause. They are available in a
  385. manner that is dependent on the language in which the trigger function
  386. is written, but is fixed for any one language. Some languages
  387. effectively behave as though there is a <code class="literal">REFERENCING</code> clause
  388. containing <code class="literal">OLD ROW AS OLD NEW ROW AS NEW</code>.
  389. </p></li><li class="listitem"><p>
  390. The standard allows transition tables to be used with
  391. column-specific <code class="literal">UPDATE</code> triggers, but then the set of rows
  392. that should be visible in the transition tables depends on the
  393. trigger's column list. This is not currently implemented by
  394. <span class="productname">PostgreSQL</span>.
  395. </p></li><li class="listitem"><p>
  396. <span class="productname">PostgreSQL</span> only allows the execution
  397. of a user-defined function for the triggered action. The standard
  398. allows the execution of a number of other SQL commands, such as
  399. <code class="command">CREATE TABLE</code>, as the triggered action. This
  400. limitation is not hard to work around by creating a user-defined
  401. function that executes the desired commands.
  402. </p></li></ul></div><p>
  403. </p><p>
  404. SQL specifies that multiple triggers should be fired in
  405. time-of-creation order. <span class="productname">PostgreSQL</span> uses
  406. name order, which was judged to be more convenient.
  407. </p><p>
  408. SQL specifies that <code class="literal">BEFORE DELETE</code> triggers on cascaded
  409. deletes fire <span class="emphasis"><em>after</em></span> the cascaded <code class="literal">DELETE</code> completes.
  410. The <span class="productname">PostgreSQL</span> behavior is for <code class="literal">BEFORE
  411. DELETE</code> to always fire before the delete action, even a cascading
  412. one. This is considered more consistent. There is also nonstandard
  413. behavior if <code class="literal">BEFORE</code> triggers modify rows or prevent
  414. updates during an update that is caused by a referential action. This can
  415. lead to constraint violations or stored data that does not honor the
  416. referential constraint.
  417. </p><p>
  418. The ability to specify multiple actions for a single trigger using
  419. <code class="literal">OR</code> is a <span class="productname">PostgreSQL</span> extension of
  420. the SQL standard.
  421. </p><p>
  422. The ability to fire triggers for <code class="command">TRUNCATE</code> is a
  423. <span class="productname">PostgreSQL</span> extension of the SQL standard, as is the
  424. ability to define statement-level triggers on views.
  425. </p><p>
  426. <code class="command">CREATE CONSTRAINT TRIGGER</code> is a
  427. <span class="productname">PostgreSQL</span> extension of the <acronym class="acronym">SQL</acronym>
  428. standard.
  429. </p></div><div class="refsect1" id="id-1.9.3.93.11"><h2>See Also</h2><span class="simplelist"><a class="xref" href="sql-altertrigger.html" title="ALTER TRIGGER"><span class="refentrytitle">ALTER TRIGGER</span></a>, <a class="xref" href="sql-droptrigger.html" title="DROP TRIGGER"><span class="refentrytitle">DROP TRIGGER</span></a>, <a class="xref" href="sql-createfunction.html" title="CREATE FUNCTION"><span class="refentrytitle">CREATE FUNCTION</span></a>, <a class="xref" href="sql-set-constraints.html" title="SET CONSTRAINTS"><span class="refentrytitle">SET CONSTRAINTS</span></a></span></div></div><div class="navfooter"><hr /><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="sql-createtransform.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="sql-commands.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="sql-createtype.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">CREATE TRANSFORM </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> CREATE TYPE</td></tr></table></div></body></html>
上海开阖软件有限公司 沪ICP备12045867号-1