Query: drop_aggregate
OS: suse
Section: 7
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
DROPAGGREGATE(7) SQL Commands DROP AGGREGATE(7)NAMEDROP AGGREGATE - remove an aggregate functionSYNOPSISDROP AGGREGATE [ IF EXISTS ] name ( type [ , ... ] ) [ CASCADE | RESTRICT ]DESCRIPTIONDROP AGGREGATE removes an existing aggregate function. To execute this command the current user must be the owner of the aggregate func- tion.PARAMETERSIF EXISTS Do not throw an error if the aggregate does not exist. A notice is issued in this case. name The name (optionally schema-qualified) of an existing aggregate function. type An input data type on which the aggregate function operates. To reference a zero-argument aggregate function, write * in place of the list of input data types. CASCADE Automatically drop objects that depend on the aggregate function. RESTRICT Refuse to drop the aggregate function if any objects depend on it. This is the default.EXAMPLESTo remove the aggregate function myavg for type integer: DROP AGGREGATE myavg(integer);COMPATIBILITYThere is no DROP AGGREGATE statement in the SQL standard.SEE ALSOALTER AGGREGATE [alter_aggregate(7)], CREATE AGGREGATE [create_aggregate(7)] SQL - Language Statements 2010-05-14 DROP AGGREGATE(7)
Related Man Pages |
---|
alter_aggregate(7) - centos |
create_aggregate(7) - redhat |
drop_operator_family(7) - suse |
drop_operator_class(7) - suse |
drop_table(7) - suse |
Similar Topics in the Unix Linux Community |
---|
aggregate ethernet ports under Solaris |
AWK aggregate records |
How to combine multiple audio interfaces by creating an aggregate device |
Aggregation of huge data |