Basic Oracle Concepts and Programming Question:

What Is an Oracle Cursor Variable?

Oracle Database Interview Question
Oracle Database Interview Question

Answer:

A cursor variable is a variable of a specific REF CURSOR data type, which is a pointer to a data structure resource connects to query statement result, similar to the CURSOR data type.. The advantage of using cursor variables is that cursor variables can be used as variables to pass between procedures and functions.


Previous QuestionNext Question
How To Pass a Parameter to a Cursor in Oracle?How To Define an Oracle Cursor Variable?