]> begriffs open source - ai-pg/blob - full-docs/man7/DROP_TRIGGER.7
Convert HTML docs to more streamlined TXT
[ai-pg] / full-docs / man7 / DROP_TRIGGER.7
1 '\" t
2 .\"     Title: DROP TRIGGER
3 .\"    Author: The PostgreSQL Global Development Group
4 .\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
5 .\"      Date: 2025
6 .\"    Manual: PostgreSQL 18.0 Documentation
7 .\"    Source: PostgreSQL 18.0
8 .\"  Language: English
9 .\"
10 .TH "DROP TRIGGER" "7" "2025" "PostgreSQL 18.0" "PostgreSQL 18.0 Documentation"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18 .ie \n(.g .ds Aq \(aq
19 .el       .ds Aq '
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
24 .nh
25 .\" disable justification (adjust text to left margin only)
26 .ad l
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
30 .SH "NAME"
31 DROP_TRIGGER \- remove a trigger
32 .SH "SYNOPSIS"
33 .sp
34 .nf
35 DROP TRIGGER [ IF EXISTS ] \fIname\fR ON \fItable_name\fR [ CASCADE | RESTRICT ]
36 .fi
37 .SH "DESCRIPTION"
38 .PP
39 \fBDROP TRIGGER\fR
40 removes an existing trigger definition\&. To execute this command, the current user must be the owner of the table for which the trigger is defined\&.
41 .SH "PARAMETERS"
42 .PP
43 IF EXISTS
44 .RS 4
45 Do not throw an error if the trigger does not exist\&. A notice is issued in this case\&.
46 .RE
47 .PP
48 \fIname\fR
49 .RS 4
50 The name of the trigger to remove\&.
51 .RE
52 .PP
53 \fItable_name\fR
54 .RS 4
55 The name (optionally schema\-qualified) of the table for which the trigger is defined\&.
56 .RE
57 .PP
58 CASCADE
59 .RS 4
60 Automatically drop objects that depend on the trigger, and in turn all objects that depend on those objects (see
61 Section\ \&5.15)\&.
62 .RE
63 .PP
64 RESTRICT
65 .RS 4
66 Refuse to drop the trigger if any objects depend on it\&. This is the default\&.
67 .RE
68 .SH "EXAMPLES"
69 .PP
70 Destroy the trigger
71 if_dist_exists
72 on the table
73 films:
74 .sp
75 .if n \{\
76 .RS 4
77 .\}
78 .nf
79 DROP TRIGGER if_dist_exists ON films;
80 .fi
81 .if n \{\
82 .RE
83 .\}
84 .SH "COMPATIBILITY"
85 .PP
86 The
87 \fBDROP TRIGGER\fR
88 statement in
89 PostgreSQL
90 is incompatible with the SQL standard\&. In the SQL standard, trigger names are not local to tables, so the command is simply
91 DROP TRIGGER \fIname\fR\&.
92 .SH "SEE ALSO"
93 CREATE TRIGGER (\fBCREATE_TRIGGER\fR(7))