In SQL, which command is used to remove a stored function from the database?
REMOVE Function
DELETE function
DROP function
ERASE Function
Correct answer is C
DROP FUNCTION removes the definition of an existing function. To execute this command the user must be the owner of the function. The argument types to the function must be specified, since several different functions can exist with the same name and different argument lists