SQL Reference Contents

NAME

drop aggregate - remove the definition of an aggregate

SYNOPSIS

drop aggregate aggname aggtype

DESCRIPTION

drop aggregate will remove all reference to an existing aggregate definition. To execute this command the current user must be the the owner of the aggregate.

EXAMPLE

--
--Remove the average aggregate for type int4
--
drop aggregate avg int4

SEE ALSO

create aggregate(l) .


Table of Contents