PL/SQL Exception

PL/SQL Exception

PL/SQL Interview Questions

PL/SQL Interview Questions and Answers


PL/SQL Drop Function

In PL/SQL a standalone FUNCTION can be deleted with the DROP FUNCTION statement.

PL/SQL Drop Function Syntax

To delete an existing procedure, use the following syntax:

Syntax

Where:

function_name: The name of the function to be deleted.

PL/SQL Drop Function example

The following PL/SQL show how to delete existing function:

Example