🎴 Flashcard Mode
Oracle PL/SQL Programming
Card1 / 20
Mastered0
Review0
QuestionClick to flip
Implicit cursors are declared for
AnswerClick to flip back
A
All DML,PL/SQL statements
💡 Explanation:
Oracle PL/SQL implicitly creates cursors for all DML statements (INSERT, UPDATE, DELETE, MERGE) and SELECT statements (which are PL/SQL statements). These implicit cursors handle the SQL processing automatically - you declare variables to receive the data, but the cursor itself is created implicitly. Option A is incorrect because it's not just 'some' but all statements. Option C is incorrect because implicit cursors are also created for DML, not just PL/SQL. Option D is incorrect because implicit cursors are indeed declared.