UsageUse this statement to drop a function from a database.
Dropping a function can cause other jobs, functions, procedures, views, triggers, constraints, or column defaults to generate an error if they refer to the function being dropped.
Examples
-- The following statement drops the LookupTaxRate function.
DROP FUNCTION "LookupTaxRate"
Required PrivilegesThe current user must be granted the DROP privilege on the current database in order to execute this statement. Please see the User Security topic for more information.
SQL 2003 Standard DeviationsThis statement deviates from the SQL 2003 standard in the following ways:
Deviation
Details
RESTRICT and CASCADE
ElevateDB does not support the RESTRICT or CASCADE clauses.