Mega Code Archive

 
Categories / Oracle PLSQL Tutorial / PL SQL Programming
 

Comments

PL/SQL allows two types of comments: single and multi-line. Single-line comments start with a delimiter -- and go to the end of the line, as shown here: declare   here you should declare variables,   constants, etc.    ... begin -- here you place your code     ... end; /