What is the syntax to Drop Procedure?

8. What is the syntax to Drop Procedure?

  1. DELETE PROCEDURE procedure_name;
  2. DROP PROCEDURE procedure_name;
  3. RETRIEVE PROCEDURE procedure_name;
  4. END PROCEDURE procedure_name;

Answer: B) DROP PROCEDURE procedure_name;

Explanation:

The syntax to Drop Procedure is DROP PROCEDURE procedure_name;.

Comments and Discussions!

Load comments ↻






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