What is the syntax to close a cursor?

14. What is the syntax to close a cursor?

  1. END cursor_name;
  2. DROP cursor_name;
  3. CLOSE cursor_name;
  4. None

Answer: C) CLOSE cursor_name;

Explanation:

Once you have finished using the cursor, the CLOSE statement closes it.

Comments and Discussions!

Load comments ↻






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