mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-09 16:27:38 +08:00
36 lines
909 B
Plaintext
36 lines
909 B
Plaintext
.\" This is -*-nroff-*-
|
|
.\" XXX standard disclaimer belongs here....
|
|
.\" $Header: /cvsroot/pgsql/src/man/Attic/delete.l,v 1.4 1998/06/24 13:21:25 momjian Exp $
|
|
.TH DELETE SQL 11/05/95 PostgreSQL PostgreSQL
|
|
.SH NAME
|
|
delete - 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.
|
|
.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).
|