Multiple choice technology programming languages

Which character is used to continue a statement in SQL*Plus?

  1. *

  2. /

  3. -

  4. --

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

In SQL*Plus, the hyphen character (-) at the end of a line indicates statement continuation. This allows you to break long SQL statements across multiple lines. The hyphen must be the last character on the line (before the newline). Other characters listed: * is a wildcard, / executes the previous buffer, and -- begins a comment (not a continuation character).