Home »
MCQs »
Oracle MCQs »
Oracle Functions MCQs
What is the syntax to drop a function?
9. What is the syntax to drop a function?
- DROP PROCEDURE function_name;
- DELETE PROCEDURE function_name;
- DROP FUNCTION function_name;
- DELETE FUNCTION function_name;
Answer: C) DROP FUNCTION function_name;
Explanation:
The syntax to drop a function is DROP FUNCTION function_name;.