Oracle SQL,PL/SQL

How to Comment PL/SQL Code?

Written by shohal

Comment

/*This is multiple Comment. Thanks */

–This is Single comment.

Comment Code Example :

 Declare

 V_sal Number(9,2);

 Begin

 /* This is multipul comment .  Good day to all */

 V_Sal:=120;

 V_Sal:=V_Sal*120;–This is a single comment .

 Dbms_output.put_line(V_Sal);

 End;

 /

About the author

shohal

Leave a Comment