Last Updated : 05 Aug, 2025
PL/SQL (Procedural Language/SQL) is Oracle’s extension of SQL that adds procedural features like loops, conditions, and error handling. It allows developers to write powerful programs that combine SQL queries with logic to control how data is processed. With PL/SQL, complex operations, calculations, and error handling can be performed directly within the Oracle database, making data manipulation more efficient and flexible.
PL/SQL allows developers to:
PL/SQL brings the benefits of procedural programming to the relational database world. Some of the most important features of PL/SQL include:
PL/SQL extends SQL by adding constructs found in procedural languages, resulting in a structural language that is more powerful than SQL. The basic unit in PL/SQL is a block. All PL/SQL programs are made up of blocks, which can be nested within each other.
Typically, each block performs a logical action in the program. A block has the following structure:
DECLARE
declaration statements;BEGIN
executable statementsEXCEPTIONS
exception handling statementsEND;
PL/SQL code is written in blocks, which consist of three main sections:
In PL/SQL, identifiers are names used to represent various program elements like variables, constants, procedures, cursors, triggers etc. These identifiers allow you to store, manipulate, and access data throughout your PL/SQL code.
1. Variables in PL/SQLLike several other programming languages, variables in PL/SQL must be declared prior to its use. A variable is like a container that holds data during program execution. Each variable must have a valid name and a specific data type.
Syntax for declaration of variables:
variable_name datatype [NOT NULL := value ];
INTEGER
, VARCHAR2
).SQL> SET SERVEROUTPUT ON;
SQL> DECLARE
var1 INTEGER;
var2 REAL;
var3 varchar2(20) ;
BEGIN
null;
END;
/
Output:
PL/SQL procedure successfully completed.
Explanation:
The outputs are displayed by using DBMS_OUTPUT which is a built-in package that enables the user to display output, debugging information, and send messages from PL/SQL blocks, subprograms, packages, and triggers. Let us see an example to see how to display a message using PL/SQL :
Example: Displaying Output
SQL> SET SERVEROUTPUT ON;
SQL> DECLARE
var varchar2(40) := 'I love GeeksForGeeks' ;
BEGIN
dbms_output.put_line(var);
END;
/
Output:
I love GeeksForGeeks
PL/SQL procedure successfully completed.
Explanation: dbms_output.put_line : This command is used to direct the PL/SQL output to a screen.
Like in many other programming languages, in PL/SQL also, comments can be put within the code which has no effect in the code. There are two syntaxes to create comments in PL/SQL :
4. Taking input from users-- This is a single-line comment
/*
This is a multi-line comment
that spans over multiple lines.
*/
In PL/SQL we can take input from the user and store it in a variable using substitution variables. These variables are preceded by an &
symbol. Let us see an example to show how to take input from users in PL/SQL:
SQL> SET SERVEROUTPUT ON;
SQL> DECLARE
-- taking input for variable a
a number := &a;
-- taking input for variable b
b varchar2(30) := &b;
BEGIN
null;
END;
/
Output:
Enter value for a: 24
old 2: a number := &a;
new 2: a number := 24;
Enter value for b: 'GeeksForGeeks'
old 3: b varchar2(30) := &b;
new 3: b varchar2(30) := 'GeeksForGeeks';PL/SQL procedure successfully completed.
Explanation:
&a
and &b
are substitution variables where the user will be prompted to provide values.a
and b
when the code runs.Let’s combine all the above concepts into one practical example. We’ll create a PL/SQL block that takes two numbers from the user, calculates their sum, and displays the result.
--PL/SQL code to print sum of two numbers taken from the user.
SQL> SET SERVEROUTPUT ON;
SQL> DECLARE
-- taking input for variable a
a integer := &a ;
-- taking input for variable b
b integer := &b ;
c integer ;
BEGIN
c := a + b ;
dbms_output.put_line('Sum of '||a||' and '||b||' is = '||c);
END;
Execution:
PL/SQL Execution EnvironmentEnter value for a: 2
Enter value for b: 3Sum of 2 and 3 is = 5
PL/SQL procedure successfully completed.
The PL/SQL engine resides in the Oracle engine. When a PL/SQL block is executed, it sends a single request to the Oracle engine, which processes the SQL and PL/SQL statements in the block together. This reduces network traffic, making PL/SQL more efficient for batch processing and handling complex logic.
Differences Between SQL and PL/SQLFeature
SQL PL/SQLPurpose
SQL is a single query that is used to perform DML and DDL operations. PL/SQL is a block of codes that used to write the entire program blocks/ procedure/ function, etc.Nature
It is declarative, that defines what needs to be done, rather than how things need to be done. PL/SQL is procedural that defines how the things needs to be done.Execution
Executes single statement. Executes block of codeUse Case
Data retrieval, manipulation and definition( eg. SELECT, INSERT, UPDATE) Mainly used to create an application.Syntax
SQL statements only SQL Statements combined with procedural logicData Handling
Performs actions directly on the database.
Can contain SQL inside its blocks and is used for more control over data handling
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4