PL/SQL Tutorial
PL/SQL tutorial provides basic and advanced concepts of SQL. Our PL/SQL tutorial is designed for beginners and professionals.
PL/SQL is a block structured language that can have multiple blocks in it.
Our PL/SQL tutorial includes all topics of PL/SQL language such as conditional statements, loops, arrays, string, exceptions, collections, records, triggers, functions, procedures, cursors etc. There are also given PL/SQL interview questions and quizzes to help you better understand the PL/SQL language.
SQL stands for Structured Query Language i.e. used to perform operations on the records stored in database such as inserting records, updating records, deleting records, creating, modifying and dropping tables, views etc.
What is PL/SQL
PL/SQL is a block structured language. The programs of PL/SQL are logical blocks that can contain any number of nested sub-blocks. Pl/SQL stands for "Procedural Language extension of SQL" that is used in Oracle. PL/SQL is integrated with Oracle database (since version 7). The functionalities of PL/SQL usually extended after each release of Oracle database. Although PL/SQL is closely integrated with SQL language, yet it adds some programming constraints that are not available in SQL.
PL/SQL Functionalities
PL/SQL includes procedural language elements like conditions and loops. It allows declaration of constants and variables, procedures and functions, types and variable of those types and triggers. It can support Array and handle exceptions (runtime errors). After the implementation of version 8 of Oracle database have included features associated with object orientation. You can create PL/SQL units like procedures, functions, packages, types and triggers, etc. which are stored in the database for reuse by applications.
With PL/SQL, you can use SQL statements to manipulate Oracle data and flow of control statements to process the data.
The PL/SQL is known for its combination of data manipulating power of SQL with data processing power of procedural languages. It inherits the robustness, security, and portability of the Oracle Database.
PL/SQL is not case sensitive so you are free to use lower case letters or upper case letters except within string and character literals. A line of PL/SQL text contains groups of characters known as lexical units. It can be classified as follows:
- Delimeters
- Identifiers
- Literals
- Comments
PL/SQL Index
PL/SQL Tutorial
Control Statements
- PL/SQL IF
- PL/SQL Case
- PL/SQL Loop
- PL/SQL Exit Loop
- PL/SQL While Loop
- PL/SQL For Loop
- PL/SQL Continue
- PL/SQL GOTO
PL/SQL Procedure
PL/SQL Function
PL/SQL Cursor
PL/SQL Exception
PL/SQL Trigger
Interview Questions
Quiz
Prerequisite
Before learning PL/SQL, you must have the basic knowledge of SQL and programming language like C.
Audience
Our PL/SQL tutorial is designed to help beginners and professionals.
Problem
We assure that you will not find any problem in this PL/SQL tutorial. But if there is any mistake, please post the problem in contact form.
PL/SQL Variables
A variable is a meaningful name which facilitates a programmer to store data temporarily during the execution of code. It helps you to manipulate data in PL/SQL programs. It is nothing except a name given to a storage area. Each variable in the PL/SQL has a specific data type which defines the size and layout of the variable's memory.
A variable should not exceed 30 characters. Its letter optionally followed by more letters, dollar signs, numerals, underscore etc.
1. It needs to declare the variable first in the declaration section of a PL/SQL block before using it.
2. By default, variable names are not case sensitive. A reserved PL/SQL keyword cannot be used as a variable name.
How to declare variable in PL/SQL
You must declare the PL/SQL variable in the declaration section or in a package as a global variable. After the declaration, PL/SQL allocates memory for the variable's value and the storage location is identified by the variable name.
Syntax for declaring variable:
Following is the syntax for declaring variable:
Here, variable_name is a valid identifier in PL/SQL and datatype must be valid PL/SQL data type. A data type with size, scale or precision limit is called a constrained declaration. The constrained declaration needs less memory than unconstrained declaration.
Example:
Radius Number := 5;
Date_of_birth date;
Declaration Restrictions:
In PL/SQL while declaring the variable some restrictions hold.
- Forward references are not allowed i.e. you must declare a constant or variable before referencing it in another statement even if it is a declarative statement.
val number := Total - 200;
Total number := 1000;
The first declaration is illegal because the TOTAL variable must be declared before using it in an assignment expression. - Variables belonging to the same datatype cannot be declared in the same statement.
N1, N2, N3 Number;
It is an illegal declaration.
Naming rules for PL/SQL variables
The variable in PL/SQL must follow some naming rules like other programming languages.
- The variable_name should not exceed 30 characters.
- Variable name should not be the same as the table table's column of that block.
- The name of the variable must begin with ASCII letter. The PL/SQL is not case sensitive so it could be either lowercase or uppercase. For example: v_data and V_DATA refer to the same variables.
- You should make your variable easy to read and understand, after the first character, it may be any number, underscore (_) or dollar sign ($).
- NOT NULL is an optional specification on the variable.
Initializing Variables in PL/SQL
Evertime you declare a variable, PL/SQL defines a default value NULL to it. If you want to initialize a variable with other value than NULL value, you can do so during the declaration, by using any one of the following methods.
- The DEFAULT keyword
- The assignment operator
You can also specify NOT NULL constraint to avoid NULL value. If you specify the NOT NULL constraint, you must assign an initial value for that variable.
You must have a good programming skill to initialize variable properly otherwise, sometimes program would produce unexpected result.
Example of initilizing variable
Let's take a simple example to explain it well:
After the execution, this will produce the following result:
Value of c: 70 Value of f: 33.333333333333333333 PL/SQL procedure successfully completed.
Variable Scope in PL/SQL:
PL/SQL allows nesting of blocks. A program block can contain another inner block. If you declare a variable within an inner block, it is not accessible to an outer block. There are two types of variable scope:
- Local Variable: Local variables are the inner block variables which are not accessible to outer blocks.
- Global Variable: Global variables are declared in outermost block.
Example of Local and Global variables
Let's take an example to show the usage of Local and Global variables in its simple form:
After the execution, this will produce the following result:
Outer Variable num1: 95 Outer Variable num2: 85 Inner Variable num1: 195 Inner Variable num2: 185 PL/SQL procedure successfully completed.
Variable Attributes:
When you declare a PL/SQL variable to hold the column values, it must be of correct data types and precision, otherwise error will occur on execution. Rather than hard coding the data type and precision of a variable. PL/SQL provides the facility to declare a variable without having to specify a particular data type using %TYPE and %ROWTYPE attributes. These two attributes allow us to specify a variable and have that variable data type be defined by a table/view column or a PL/SQL package variable.
A % sign servers as the attribute indicator. This method of declaring variables has an advantage as the user is not concerned with writing and maintaining code.
Following are the types of Variable Attributes in PL/SQL.
- %TYPE:
The %TYPE attribute is used to declare variables according to the already declared variable or database column. It is used when you are declaring an individual variable, not a record. The data type and precision of the variable declared using %TYPE attribute is the same as that of the column that is referred from a given table. This is particularly useful when declaring variables that will hold database values. When using the %TYPE keyword, the name of the columns and the table to which the variable will correspond must be known to the user. These are then prefixed with the variable name. If some previously declared variable is referred then prefix that variable name to the %TYPE attribute.
The syntax for declaring a variable with %TYPE is:
Where <column_name> is the column defined in the <tab_name>.
Consider a declaration.
SALARY EMP.SAL % TYPE;
This declaration will declare a variable SALARY that has the same data type as column SAL of the EMP table.
Example:
After the execution, this will produce the following result:
Enter value for ecode: 7499 Salary of 7499 is = 1600 PL/SQL procedure successfully completed.
- %ROWTYPE:
The %ROWTYPE attribute is used to declare a record type that represents a row in a table. The record can store an entire row or some specific data selected from the table. A column in a row and corresponding fields in a record have the same name and data types.
The syntax for declaring a variable with %ROWTYPE is:
Where <variable_name> is the variable defined in the <tab_name>.
Consider a declaration.
EMPLOYEE EMP. % ROW TYPE;
This declaration will declare a record named EMPLOYEE having fields with the same name and data types as that of columns in the EMP table. You can access the elements of EMPLOYEE record as
EMPLOYEE.SAL := 10000;
EMPLOYEE.ENAME := ‘KIRAN’;
Example:
After the execution, this will produce the following result:
Row Inserted PL/SQL procedure successfully completed.
Advantages:
- If you don’t know the data type at the time of declaration. The data type assigned to the associated variables will be determined dynamically at run time.
- If the data type of the variable you are referencing changes the %TYPE or %ROWTYPE variable changes at run time without having to rewrite variable declarations. For example: if the ENAME column of an EMP table is changed from a VARCHAR2(10) to VRACHAR2(15) then you don’t need to modify the PL/SQL code.
PL/SQL Constants
A constant is a value used in a PL/SQL block that remains unchanged throughout the program. It is a user-defined literal value. It can be declared and used instead of actual values.
Let's take an example to explain it well:
Suppose, you have to write a program which will increase the salary of the employees upto 30%, you can declare a constant and use it throughout the program. Next time if you want to increase the salary again you can change the value of constant than the actual value throughout the program.
Syntax to declare a constant:
- Constant_name:it is the name of constant just like variable name. The constant word is a reserved word and its value does not change.
- VALUE: it is a value which is assigned to a constant when it is declared. It can not be assigned later.
Example of PL/SQL constant
Let's take an example to explain it well:
After the execution of the above code at SQL prompt, it will produce the following result:.
PL/SQL Literals
Literals are the explicit numeric, character, string or boolean values which are not represented by an identifier. For example: TRUE, NULL, etc. are all literals of type boolean. PL/SQL literals are case-sensitive. There are following kinds of literals in PL/SQL:
- Numeric Literals
- Character Literals
- String Literals
- BOOLEAN Literals
- Date and Time Literals
Example of these different types of Literals:
Literals | Examples |
---|---|
Numeric | 75125, 3568, 33.3333333 etc. |
Character | 'A' '%' '9' ' ' 'z' '(' |
String | Hello JavaTpoint! |
Boolean | TRUE, FALSE, NULL etc. |
Date and Time | '26-11-2002' , '2012-10-29 12:01:01' |
PL/SQL If
PL/SQL supports the programming language features like conditional statements and iterative statements. Its programming constructs are similar to how you use in programming languages like Java and C++.
Syntax for IF Statement:
There are different syntaxes for the IF-THEN-ELSE statement.
Syntax: (IF-THEN statement):
This syntax is used when you want to execute statements only when condition is TRUE.
Syntax: (IF-THEN-ELSE statement):
This syntax is used when you want to execute one set of statements when condition is TRUE or a different set of statements when condition is FALSE.
Syntax: (IF-THEN-ELSIF statement):
This syntax is used when you want to execute one set of statements when condition1 is TRUE or a different set of statements when condition2 is TRUE.
Syntax: (IF-THEN-ELSIF-ELSE statement):
When a condition is found to be TRUE, the IF-THEN-ELSE statement will execute the corresponding code and not check the conditions any further.
If there no condition is met, the ELSE portion of the IF-THEN-ELSE statement will be executed.
ELSIF and ELSE portions are optional.
Example of PL/SQL If Statement
Let's take an example to see the whole concept:
After the execution of the above code in SQL prompt, you will get the following result:
a is not less than 20 value of a is : 500 PL/SQL procedure successfully completed.
PL/SQL Case Statement
The PL/SQL CASE statement facilitates you to execute a sequence of satatements based on a selector. A selector can be anything such as variable, function or an expression that the CASE statement checks to a boolean value.
The CASE statement works like the IF statement, only using the keyword WHEN. A CASE statement is evaluated from top to bottom. If it get the condition TRUE, then the corresponding THEN calause is executed and the execution goes to the END CASE clause.
Syntax for the CASE Statement:
Example of PL/SQL case statement
Let's take an example to make it clear:
After the execution of above code, you will get the following result:
Excellent PL/SQL procedure successfully completed.
PL/SQL Loop
The PL/SQL loops are used to repeat the execution of one or more statements for specified number of times. These are also known as iterative control statements.
Syntax for a basic loop:
Types of PL/SQL Loops
There are 4 types of PL/SQL Loops.
- Basic Loop / Exit Loop
- While Loop
- For Loop
- Cursor For Loop
PL/SQL Exit Loop (Basic Loop)
PL/SQL exit loop is used when a set of statements is to be executed at least once before the termination of the loop. There must be an EXIT condition specified in the loop, otherwise the loop will get into an infinite number of iterations. After the occurrence of EXIT condition, the process exits the loop.
Syntax of basic loop:
Syntax of exit loop:
Example of PL/SQL EXIT Loop
Let's take a simple example to explain it well:
After the execution of the above code, you will get the following result:
1 2 3 4 5 6 7 8 9 10
Note: You must follow these steps while using PL/SQL Exit Loop.
- Initialize a variable before the loop body
- Increment the variable in the loop.
- You should use EXIT WHEN statement to exit from the Loop. Otherwise the EXIT statement without WHEN condition, the statements in the Loop is executed only once.
PL/SQL EXIT Loop Example 2
Output:
100 200 300 400 500 600 700 800 900 1000
PL/SQL While Loop
PL/SQL while loop is used when a set of statements has to be executed as long as a condition is true, the While loop is used. The condition is decided at the beginning of each iteration and continues until the condition becomes false.
Syntax of while loop:
Example of PL/SQL While Loop
Let's see a simple example of PL/SQL WHILE loop.
After the execution of the above code, you will get the following result:
1 2 3 4 5 6 7 8 9 10
Note: You must follow these steps while using PL/SQL WHILE Loop.
- Initialize a variable before the loop body.
- Increment the variable in the loop.
- You can use EXIT WHEN statements and EXIT statements in While loop but it is not done often.
PL/SQL WHILE Loop Example 2
Output:
200 400 600 800 1000 1200 1400 1600 1800 2000
PL/SQL FOR Loop
PL/SQL for loop is used when when you want to execute a set of statements for a predetermined number of times. The loop is iterated between the start and end integer values. The counter is always incremented by 1 and once the counter reaches the value of end integer, the loop ends.
Syntax of for loop:
- initial_value : Start integer value
- final_value : End integer value
PL/SQL For Loop Example 1
Let's see a simple example of PL/SQL FOR loop.
After the execution of the above code, you will get the following result:
1 2 3 4 5 6 7 8 9 10
Note: You must follow these steps while using PL/SQL WHILE Loop.
- You don't need to declare the counter variable explicitly because it is declared implicitly in the declaration section.
- The counter variable is incremented by 1 and does not need to be incremented explicitly.
- You can use EXIT WHEN statements and EXIT statements in FOR Loops but it is not done often.
PL/SQL For Loop Example 2
Output:
10 20 30 40 50 60 70 80 90 100
PL/SQL For Loop REVERSE Example 3
Let's see an example of PL/SQL for loop where we are using REVERSE keyword.
Output:
100 90 80 70 60 50 40 30 20 10
PL/SQL Continue Statement
The continue statement is used to exit the loop from the reminder if its body either conditionally or unconditionally and forces the next iteration of the loop to take place, skipping any codes in between.
The continue statement is not a keyword in Oracle 10g. It is a new feature encorporated in oracle 11g.
For example: If a continue statement exits a cursor FOR LOOP prematurely then it exits an inner loop and transfer control to the next iteration of an outer loop, the cursor closes (in this context, CONTINUE works like GOTO).
Syntax:
Example of PL/SQL continue statement
Let's take an example of PL/SQL continue statement.
After the execution of above code, you will get the following result:
Inside loop: x = 0 Inside loop: x = 1 Inside loop: x = 2 Inside loop, after CONTINUE: x = 3 Inside loop: x = 3 Inside loop, after CONTINUE: x = 4 Inside loop: x = 4 Inside loop, after CONTINUE: x = 5 After loop: x = 5
Note: The continue statement is not supported in Oracle 10g. Oracle 11g supports this as a new feature.
PL/SQL GOTO Statement
In PL/SQL, GOTO statement makes you able to get an unconditional jump from the GOTO to a specific executable statement label in the same subprogram of the PL/SQL block.
Here the label declaration which contains the label_name encapsulated within the << >> symbol and must be followed by at least one statement to execute.
Syntax:
Here the label declaration which contains the label_name encapsulated within the << >> symbol and must be followed by at least one statement to execute.
Example of PL/SQL GOTO statement
Let's take an example of PL/SQL GOTO statement.
After the execution of above code, you will get the following result:
value of a: 30 value of a: 31 value of a: 32 value of a: 33 value of a: 34 value of a: 36 value of a: 37 value of a: 38 value of a: 39 value of a: 40 value of a: 41 value of a: 42 value of a: 43 value of a: 44 value of a: 45 value of a: 46 value of a: 47 value of a: 48 value of a: 49 Statement processed.
Restriction on GOTO statement
Following is a list of some restrictions imposed on GOTO statement.
- Cannot transfer control into an IF statement, CASE statement, LOOP statement or sub-block.
- Cannot transfer control from one IF statement clause to another or from one CASE statement WHEN clause to another.
- Cannot transfer control from an outer block into a sub-block.
- Cannot transfer control out of a subprogram.
- Cannot transfer control into an exception handler.
PL/SQL Procedure
The PL/SQL stored procedure or simply a procedure is a PL/SQL block which performs one or more specific tasks. It is just like procedures in other programming languages.
The procedure contains a header and a body.
- Header: The header contains the name of the procedure and the parameters or variables passed to the procedure.
- Body: The body contains a declaration section, execution section and exception section similar to a general PL/SQL block.
How to pass parameters in procedure:
When you want to create a procedure or function, you have to define parameters .There is three ways to pass parameters in procedure:
- IN parameters: The IN parameter can be referenced by the procedure or function. The value of the parameter cannot be overwritten by the procedure or the function.
- OUT parameters: The OUT parameter cannot be referenced by the procedure or function, but the value of the parameter can be overwritten by the procedure or function.
- INOUT parameters: The INOUT parameter can be referenced by the procedure or function and the value of the parameter can be overwritten by the procedure or function.
A procedure may or may not return any value.
PL/SQL Create Procedure
Syntax for creating procedure:
Create procedure example
In this example, we are going to insert record in user table. So you need to create user table first.
Table creation:
Now write the procedure code to insert record in user table.
Procedure Code:
Output:
Procedure created.
PL/SQL program to call procedure
Let's see the code to call above created procedure.
Now, see the "USER" table, you will see one record is inserted.
ID | Name |
---|---|
101 | Rahul |
PL/SQL Drop Procedure
Syntax for drop procedure
Example of drop procedure
PL/SQL Function
The PL/SQL Function is very similar to PL/SQL Procedure. The main difference between procedure and a function is, a function must always return a value, and on the other hand a procedure may or may not return a value. Except this, all the other things of PL/SQL procedure are true for PL/SQL function too.
Syntax to create a function:
Here:
- Function_name: specifies the name of the function.
- [OR REPLACE] option allows modifying an existing function.
- The optional parameter list contains name, mode and types of the parameters.
- IN represents that value will be passed from outside and OUT represents that this parameter will be used to return a value outside of the procedure.
The function must contain a return statement.
- RETURN clause specifies that data type you are going to return from the function.
- Function_body contains the executable part.
- The AS keyword is used instead of the IS keyword for creating a standalone function.
PL/SQL Function Example
Let's see a simple example to create a function.
Now write another program to call the function.
Output:
Addition is: 33 Statement processed. 0.05 seconds
Another PL/SQL Function Example
Let's take an example to demonstrate Declaring, Defining and Invoking a simple PL/SQL function which will compute and return the maximum of two values.
Output:
Maximum of (23,45): 45 Statement processed. 0.02 seconds
PL/SQL function example using table
Let's take a customer table. This example illustrates creating and calling a standalone function. This function will return the total number of CUSTOMERS in the customers table.
Create customers table and have records in it.
Id | Name | Department | Salary |
---|---|---|---|
1 | alex | web developer | 35000 |
2 | ricky | program developer | 45000 |
3 | mohan | web designer | 35000 |
4 | dilshad | database manager | 44000 |
Create Function:
After the execution of above code, you will get the following result.
Function created.
Calling PL/SQL Function:
While creating a function, you have to give a definition of what the function has to do. To use a function, you will have to call that function to perform the defined task. Once the function is called, the program control is transferred to the called function.
After the successful completion of the defined task, the call function returns program control back to the main program.
To call a function you have to pass the required parameters along with function name and if function returns a value then you can store returned value. Following program calls the function totalCustomers from an anonymous block:
After the execution of above code in SQL prompt, you will get the following result.
Total no. of Customers: 4 PL/SQL procedure successfully completed.
PL/SQL Recursive Function
You already know that a program or a subprogram can call another subprogram. When a subprogram calls itself, it is called recursive call and the process is known as recursion.
Example to calculate the factorial of a number
Let's take an example to calculate the factorial of a number. This example calculates the factorial of a given number by calling itself recursively.
After the execution of above code at SQL prompt, it produces the following result.
Factorial 6 is 720 PL/SQL procedure successfully completed.
PL/SQL Drop Function
Syntax for removing your created function:
If you want to remove your created function from the database, you should use the following syntax.
No comments:
Post a Comment