postgresql/src/man/drop_trigger.l

24 lines
589 B
Plaintext
Raw Normal View History

.\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here....
1998-01-11 23:18:01 +01:00
.\" $Header: /cvsroot/pgsql/src/man/Attic/drop_trigger.l,v 1.3 1998/01/11 22:17:32 momjian Exp $
.TH "DROP TRIGGER" SQL 09/26/97 PostgreSQL
.SH NAME
1998-01-11 23:18:01 +01:00
drop trigger - destroy existing trigger
.SH SYNOPSIS
.nf
1997-09-30 11:50:28 +02:00
\fBdrop trigger\fR trigname \fBon\fR relname
.fi
.SH DESCRIPTION
.BR "Drop Trigger"
1997-09-30 11:50:28 +02:00
removes trigger for relation from the data base. Only relation owner may destroy a
trigger.
.SH EXAMPLE
.nf
--
1997-09-30 11:50:28 +02:00
--Destroy the empverify trigger on relation emp
--
1997-09-30 11:50:28 +02:00
drop trigger empverify on emp
.fi
.SH "SEE ALSO"
create trigger(l).