Constant

From Oracle FAQ

Jump to: navigation, search

A constant is a variable which value cannot be changed at run-time.

PL/SQL Example

DECLARE 
  c_report_lines CONSTANT NUMBER := 80;  -- Define a numeric constant
BEGIN
  dbms_output.put_line('Report has '||c_report_lines||' lines');
END;
/

Also see


Glossary of Terms
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z #
Personal tools