diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-11-14 10:15:16 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-11-14 10:15:16 +0000 |
commit | 389fe48cbb513888205bbe3a5008ed109976dacb (patch) | |
tree | e1bc978627338c127aa0d9c0fdbd8bed7fa6821c /doc/man/delete.l | |
parent | 65a10b1be6400025e7fd54befbc4a8489fd50e10 (diff) | |
download | postgresql-389fe48cbb513888205bbe3a5008ed109976dacb.tar.gz postgresql-389fe48cbb513888205bbe3a5008ed109976dacb.zip |
Removed man pages...moved to src/man
Requested by Bryan
Diffstat (limited to 'doc/man/delete.l')
-rw-r--r-- | doc/man/delete.l | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/doc/man/delete.l b/doc/man/delete.l deleted file mode 100644 index dc567d791c5..00000000000 --- a/doc/man/delete.l +++ /dev/null @@ -1,37 +0,0 @@ -.\" This is -*-nroff-*- -.\" XXX standard disclaimer belongs here.... -.\" $Header: /cvsroot/pgsql/doc/man/Attic/delete.l,v 1.2 1996/09/23 08:39:53 scrappy Exp $ -.TH DELETE SQL 11/05/95 Postgres95 Postgres95 -.SH NAME -delete \(em delete instances from a class -.SH SYNOPSIS -.nf -\fBdelete\fR \fBfrom\fR class_name [ \fBwhere\fR qual ] -.fi -.SH DESCRIPTION -.BR Delete -removes instances which satisfy the qualification, -.IR qual -from the specified class. -If the qualification is absent, the effect is to delete all instances -in the class. The result is a valid, but empty class. -.PP -You must have write access to the class in order to modify it, as well -as read access to any class whose values are read in the qualification -(see -.IR "change acl" (l). -.SH EXAMPLE -.nf --- ---Remove all employees who make over $30,000 --- -delete from emp where emp.sal > 30000 -.fi -.nf --- ---Clear the hobbies class --- -delete from hobbies -.fi -.SH "SEE ALSO" -drop(l). |