PL/SQL Comment
Advertisements
PL/SQL Comment
Generally Comments are used to provide the description about the Logic written in program. Comments are not display on output screen. When we are used the comments, then that specific part will be ignored by compiler.
Single line comment
In PL/SQL you can write single line comment by using -- symbol
Syntax
-- single line comment
Multi line comment
In PL/SQL you can write multi line comment by using /* */ symbol
Syntax
/* multi line comment */
Google Advertisment