Writing a simple program : Introduction « PL SQL Programming « Oracle PL/SQL Tutorial






The simplest kind of PL/SQL code is called an anonymous block.

An anonymous block is a block of code that has its own DECLARE/BEGIN/END structure.

Anonymous blocks can either stand on their own (as shown here) or they can sit within any other PL/SQL program.

The general syntax for an anonymous block:

declare
    ...
     <Declaration part>
    ...
begin
    ...
    <Procedural part>
    ...
exception
    ...
    <Exception handler>
    ...
end;
  1. The declaration section defines all variables, cursors, subprograms, and other elements to be used in the code.
  2. The declaration section is optional.
  3. The procedural section contains the main body of the routine.
  4. The procedural section starts with the begin keyword and ends with the exception keyword or the end keyword if you have no exception section.
  5. The procedural section is the only mandatory part of the code.
  6. You must have at least one line of executable code in the procedural section.
  7. You can use the NULL command to indicate that nothing should be executed.
  8. The exception section is also optional.
  9. The exception section allows the program to intercept and process exceptions.








24.1.Introduction
24.1.1.Writing a simple program
24.1.2.Each complete line of the PL/SQL code must end with a semicolon (;).
24.1.3.Anonymous Block Structure
24.1.4.An example of an anonymous block.
24.1.5.Anonymous blocks can be nested in the procedure and exception blocks in as many levels as you want
24.1.6.The Lexical Set of Elements
24.1.7.Delimiters
24.1.8.Comments
24.1.9.Multi-line comments start with /* and end with */.
24.1.10.Declaring variables
24.1.11.Declaring a Variable by Reference
24.1.12.There are some restrictions on the declaration of variables:
24.1.13.Assigning values to variables
24.1.14.Assign SQL query results to PL/SQL variables
24.1.15.Literals as variable values
24.1.16.Examples of Integer and Real Literals
24.1.17.Numeric literals cannot contain dollar signs or commas, but they can be written in scientific notation
24.1.18.Character and string literals in the Oracle world are enclosed by single quotes