.\" This is -*-nroff-*- .\" XXX standard disclaimer belongs here.... .\" $Header: /usr/local/cvsroot/pgsql/src/man/drop_aggregate.l,v 1.4 1998/01/11 22:17:27 momjian Exp $ .\" Translated by Mitsuhiro Maeda (mitsu@cni.co.jp) .TH "DROP AGGREGATE" SQL 11/05/95 日本語PostgreSQL 日本語PostgreSQL .SH 名称 .\" drop aggregate - remove the definition of an aggregate drop aggregate - 集約関数の定義を削除します .SH 形式 .nf \fBdrop aggregate\fR aggname aggtype .fi .SH 説明 .\" .BR "drop aggregate" .\" will remove all reference to an existing aggregate definition. .BR "drop aggregate" は既存の集約関数の定義へのすべての参照を削除します。 .\" To .\" execute this command the current user must be the the owner of the .\" aggregate. このコマンドを実行するためには、 その集約関数の所有者でなくてはなりません。 .SH 例 .nf -- .\" --Remove the average aggregate for type int4 -- int4 型の平均の集約関数を削除します -- drop aggregate avg int4 .fi .SH 参照 create aggregate(l).