Multiple choice technology mainframe

DECLARE CURSOR is executable.

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

DECLARE CURSOR is a declarative SQL statement that defines a cursor, not an executable statement. It declares the cursor's name and associated SELECT statement but doesn't actually execute the query. The cursor is activated when you OPEN it, not when declared.