What is the syntax to drop a function?

9. What is the syntax to drop a function?

  1. DROP PROCEDURE function_name;
  2. DELETE PROCEDURE function_name;
  3. DROP FUNCTION function_name;
  4. DELETE FUNCTION function_name;

Answer: C) DROP FUNCTION function_name;

Explanation:

The syntax to drop a function is DROP FUNCTION function_name;.

Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.