Single-Line Comments

A Single line comment starts with the (–) double hyphen. It will affect the whole line (till end of line). We don’t need to specify the end.

Syntax of Single-Line PL/SQL Comment

-- This is a single line comment

Example 01: PL/SQL Program to illustrate Single-Line Comment

-- Here is a program for addition of two numbers in PL/SQL
DELIMITER //

CREATE PROCEDURE add_two_numbers()
BEGIN
-- Declare variables a, b, and c of datatype INT
DECLARE a INT;
DECLARE b INT;
DECLARE c INT;

-- Assign value to variable a
SET a := 10;

-- Assign value to variable b
SET b := 20;

-- Performing addition of a and b and storing it into c
SET c := a + b;

-- Printing the result
SELECT CONCAT('Sum is ', c) AS result;
END //

DELIMITER ;

Output:

Output after executing procedure

Explanation: As we can see after calling the procedure named add_two_numbers, all the comments are ignored by the compiler and the result of addition is returned.

PL/SQL Comments

PL/SQL is a Procedural Language for SQL language that extends the functionality of the SQL within Oracle Database Management System. Comments can be used to make code more human-readable. It is a kind of note that programmers usually add while writing the code. In this article, We will learn about Comments in detail along with the types and benefits of using Comments.

Similar Reads

Comments in PL/SQL

The comment makes the code more easy to read and understand. these statements we write as comments are not executed by the compiler and simply get ignored while executing the code. For example, suppose you are writing a PL/SQL block for Manipulating data in the database but the queries you are writing are way too complex for to understand others, hence in this case we can specify the comments wherever needed to make queries more readable and understandable by ourselves or by other programmers....

Single-Line Comments

A Single line comment starts with the (–) double hyphen. It will affect the whole line (till end of line). We don’t need to specify the end....

Multi-Line Comments

Instead of commenting single line, we could also set of consecutive lines at ones using multi-line comments in PL/SQL. Multi-line comment in PL/SQL starts with a forward slash and asterisk (/*) and ends with an asterisk and forward slash (*/). Text or code between /* and */ will get ignored by the compiler....

Benefits of Using Comments

Comments make your code easy to read and understand. Comments play a crucial role while debugging, They assist you by easily understanding the logic behind the code. Comments provide ways to document your code by explaining the use of variables,and functions. Commenting can be used to mark future improvements. Commenting is used in documenting the code. especially in Version control systems....

Conclusion

Overall, Commenting in PL/SQL is a practice that aligns principles of good software engineering. By investing time in commenting developers can make the code base more readable. In general, it makes easier for the person to understand the code part with the help of Comment....

Contact Us