psql/drop-function

Drop Function

Delete a PostgreSQL function

function
delete

Command

DROP FUNCTION functionname;

Explanation

Drops an existing function from the current database.

Examples

Drop add_two_numbers function

DROP FUNCTION add_two_numbers;