.\" This is -*-nroff-*- .\" XXX standard disclaimer belongs here.... .\" $Header: /usr/local/cvsroot/pgsql/src/man/delete.l,v 1.3 1998/01/11 22:17:24 momjian Exp $ .\" Translated by Mitsuhiro Maeda (mitsu@cni.co.jp) .TH DELETE SQL 11/05/95 日本語PostgreSQL 日本語PostgreSQL .SH 名称 .\" delete - delete instances from a class delete - クラスからインスタンスを削除します .SH 形式 .nf \fBdelete\fR \fBfrom\fR class_name [ \fBwhere\fR qual ] .fi .SH 説明 .\" .BR Delete .\" removes instances which satisfy the qualification, .\" .IR qual .\" from the specified class. .BR delete は指定したクラスから、 条件 .IR qual を満たすインスタンスを削除します。 .\" 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). クラスを変更するには、そのクラスへの書き込み権限と、 もちろん条件句で読み込むクラスへの読みだし権限も必要となります。 ( .IR "change acl" (l) を参照してください) .SH 例 .nf -- .\" --Remove all employees who make over $30,000 -- $30,000 より以上稼いでいる従業員を削除します -- delete from emp where emp.sal > 30000 .fi .nf -- .\" --Clear the hobbies class -- hobbies クラスをクリアします -- delete from hobbies .fi .SH 参照 drop(l).