Multiple choice technology databases

Syntax of Cursor declaration: Cursor <> as select * from <>;

  1. True

  2. False

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

In PL/SQL, the correct syntax for declaring a cursor is CURSOR cursor_name IS select_statement;. The given syntax is false because it incorrectly uses the keyword as instead of IS, and includes extraneous angle brackets, which results in a compilation error.