DROP FUNCTION#
Removes the function from the Querona instance.
Syntax#
DROP FUNCTION { function_name } [;]
Arguments#
function_name
Specifies the name of the function to be removed.
Permissions#
Requires function ownership or the CONTROL permission on the database.
Examples#
The following example removes the findPetsByStatus function.
DROP FUNCTION dbo.findPetsByStatus;