1.

How are multi line comments defined in PL SQL?

Answer»

To define a multi-line comment style in PLSQL, there are two steps.

  • A DOUBLE HYPHEN (- -) is placed anywhere on a line (except on a CHARACTER literal), which SHALL turn it into a comment.
  • To make a comment as a multi-line, it must begin with a slash-asterisk (/*) and then end with an asterisk-slash (*/).


Discussion

No Comment Found