This Oracle tutorial explains how to declare variables in Oracle/PLSQL with syntax and examples.
In Oracle/PLSQL, a variable allows a programmer to store data temporarily during the execution of code.
The syntax for declaring variables in Oracle is:
The name to assign to the variable.
Optional. If specified, the variable's value is constant and can not be changed.
The datatype to assign to the variable.
Below is an example of how to declare a variable in Oracle called LDescription.
You can then later set or change the value of the LDescription variable, as follows:
Below is an example of how to declare a variable in Oracle and give it an initial value. This is different from a constant in that the variable's value can be changed later.
You could later change the variable's value, as follows:
Below is an example of how to declare a constant in Oracle. The value of a constant can not be changed.