select open change scope Open full search

PG.CENTER connects PostgreSQL documentation, reference, and ecosystem knowledge. Maintained by Pigsty.

Supported versions: Current (18) / 17 / 16 / 15 / 14
Development versions: 19 / devel
Unsupported versions: 13 / 12 / 11 / 10 / 9.6 / 9.5 / 9.4 / 9.3 / 9.2 / 9.1 / 9.0 / 8.4 / 8.3 / 8.2 / 8.1 / 8.0 / 7.4 / 7.3 / 7.2 / 7.1
Historical version. PostgreSQL 7.3 reached end of support in November 2007. See the current version for supported releases.

DROP FUNCTION

Name

DROP FUNCTION  --  remove a user-defined function

Synopsis

DROP FUNCTION name ( [ type [, ...] ] ) [ CASCADE | RESTRICT ]
  

Inputs

name

The name (optionally schema-qualified) of an existing function.

type

The type of a parameter of the function.

CASCADE

Automatically drop objects that depend on the function (such as operators or triggers).

RESTRICT

Refuse to drop the function if there are any dependent objects. This is the default.

Outputs

DROP FUNCTION

Message returned if the command completes successfully.

WARNING: RemoveFunction: Function "name" ("types") does not exist

This message is given if the function specified does not exist in the current database.

Description

DROP FUNCTION will remove the definition of an existing function. To execute this command the user must be the owner of the function. The input argument types to the function must be specified, since several different functions may exist with the same name and different argument lists.

Notes

Refer to CREATE FUNCTION for information on creating functions.

Examples

This command removes the square root function:

DROP FUNCTION sqrt(integer);

Compatibility

A DROP FUNCTION statement is defined in SQL99. One of its syntax forms is similar to PostgreSQL's.

See Also

CREATE FUNCTION

Report a documentation issue

Read the upstream documentation. For corrections, first check the current version.