Home » PL/SQL Constant

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 tutoraspire!
Boolean TRUE, FALSE, NULL etc.
Date and Time ’26-11-2002′ , ‘2012-10-29 12:01:01’
Next TopicPL/SQL If

You may also like