Multiple choice

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

  1. /

  2. @

  3. =

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

In SQL*Plus, the hyphen (-) is used to continue a SQL statement on the next line. When you end a line with a hyphen, SQL*Plus treats the next line as a continuation of the current statement. Other symbols have different meanings: * is for comments, / executes the SQL buffer, and @ runs a script file.