Multiple choice technology databases

What does the <<>> lexical unit or delimiter signify in PL/SQL?

  1. Comment marker

  2. Not equal to operator

  3. Label delimiter

  4. Greater than or equal to operator

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

In PL/SQL, <> and >> are used to define label delimiters, which mark named blocks for use with GOTO statements or to label loops for nested loop control. The << marks the start of a label and >> marks the end. This is distinct from comment markers (-- or /* */) or comparison operators like >= or !=.