Home » 
        MCQs » 
        Oracle MCQs » 
        Oracle Cursor MCQs
    
        
    What is the syntax to close a cursor?
    
    
    
    14. What is the syntax to close a cursor?
    
        - END cursor_name;
- DROP cursor_name;
- CLOSE cursor_name;
- None
Answer: C) CLOSE cursor_name;
    Explanation:
    Once you have finished using the cursor, the CLOSE statement closes it.