1.4 PL/SQL Language Fundamentals

This section summarizes the fundamental components of the PL/SQL language: characters, identifiers, literals, delimiters, use of comments and pragmas, and construction of statements and blocks.

1.4.1 PL/SQL Character Set

The PL/SQL language is constructed from letters, digits, symbols, and whitespace, as defined in the following table:

Type

Characters

Letters

A-Z, a-z

Digits

0-9

Symbols

~!@#$%^&*(  )_-+=|[ ]{ }:;"'< >,.?/ ^

Whitespace

space, tab, newline, carriage return

Characters are grouped together into four lexical units: identifiers, literals, delimiters, and comments.

1.4.2 Identifiers

Identifiers are names for PL/SQL objects such as constants, variables, exceptions, procedures, cursors, and reserved words. Identifiers have the following characteristics:

  • Can be up to 30 characters in length

  • Cannot include whitespace (space, tab, carriage return)

  • Must start with a letter

  • Can include a dollar sign ($), an underscore ( _ ), and a pound sign (#)

  • Are not case-sensitive

In addition, you must not use PL/SQL's reserved words as identifiers. For a list of those words, see the table in the final section in this book, Section 1.20.

If you enclose an identifier within double quotes, then all but the first of these rules are ignored. For example, the following declaration is valid:

DECLARE
   "1 ^abc"  VARCHAR2(100);
BEGIN
   IF "1 ^abc" IS NULL THEN ...
END;

1.4.3 Boolean, Numeric, and String Literals

Literals are specific values not represented by identifiers. For example, TRUE, 3.14159, 6.63E-34, `Moby Dick', and NULL are all literals of type Boolean, number, or string. There are no complex datatype literals as they are internal representations. Unlike the rest of PL/SQL, literals are case-sensitive. To embed single quotes within a string literal, place two single quotes next to each other. See the following table for examples:

Literal

Actual value

'That''s Entertainment!'

That's Entertainment!

'"The Raven"'

"The Raven"

'TZ=''CDT6CST'''

TZ='CDT6CST'

''''

'

'''hello world'''

'hello world'

''''''

''

1.4.4 Datetime Interval Literals (Oracle9i)

The datetime interval datatypes are new with Oracle9i. These datatypes represent a chronological interval expressed in terms of either years and months or days, hours, minutes, seconds, and fractional seconds. Literals of these datatypes require the keyword INTERVAL followed by the literal and format string(s). The interval must go from a larger field to a smaller one, so YEAR TO MONTH is valid, but MONTH TO YEAR is not. See the following table for examples:

Literal

Actual value

INTERVAL `1-3' YEAR TO MONTH

1 year and 3 months later

INTERVAL `125-11' YEAR(3) TO MONTH

125 years and 11 months later

INTERVAL `-18' MONTH

18 months earlier

INTERVAL `-48' HOUR

48 hours earlier

INTERVAL `7 23:15' DAY TO MINUTE

7 days, 23 hours, 15 minutes later

INTERVAL `1 12:30:10.2' DAY TO SECOND

1 day, 12 hours, 30 minutes, 10.2 seconds later

INTERVAL `12:30:10.2' HOUR TO SECOND

12 hours, 30 minutes,10.2 seconds later

1.4.5 Delimiters

Delimiters are symbols with special meaning, such as := (assignment operator), || (concatenation operator), and ; (statement delimiter). The following table lists the PL/SQL delimiters:

Delimiter

Description

;

Terminator (for statements and declarations)

+

Addition operator

-

Subtraction operator

*

Multiplication operator

/

Division operator

**

Exponentiation operator

||

Concatenation operator

:=

Assignment operator

=

Equality operator

<> and !=

Inequality operators

^= and ~=

Inequality operators

<

"Less than" operator

<=

"Less than or equal to" operator

>

"Greater than" operator

>=

"Greater than or equal to" operator

( and )

Expression or list delimiters

<< and >>

Label delimiters

,

(Comma) Item separator

'

(Single quote) Literal delimiter

"

(Double quote) Quoted literal delimiter

:

Host variable indicator

%

Attribute indicator

.

(Period) Component indicator (as in record.field or package.element)

@

Remote database indicator (database link)

=>

Association operator (named notation)

..

(Two periods) Range operator (used in the FOR loop)

--

Single-line comment indicator

/* and */

Multiline comment delimiters

1.4.6 Comments

Comments are sections of the code that exist to aid readability. The compiler ignores them.

A single-line comment begins with a double hyphen (?) and ends with a new line. The compiler ignores all characters between the ? and the new line.

A multiline comment begins with slash asterisk (/*) and ends with asterisk slash (*/). The /* */ comment delimiters can also be used for a single-line comment. The following block demonstrates both kinds of comments:

DECLARE
   -- Two dashes comment out only the physical line.
   /* Everything is a comment until the compiler 
      encounters the following symbol */

You cannot embed multiline comments within a multiline comment, so be careful during development if you comment out portions of code that include comments. The following code demonstrates this issue:

DECLARE
   /* Everything is a comment until the compiler 
      /* This comment inside another WON'T work!*/
      encounters the following symbol. */

   /* Everything is a comment until the compiler 
      -- This comment inside another WILL work!
      encounters the following symbol. */

1.4.7 Pragmas

The PRAGMA keyword is used to give instructions to the compiler. There are four types of pragmas in PL/SQL:

EXCEPTION_INIT

Tells the compiler to associate the specified error number with an identifier that has been declared an EXCEPTION in your current program or an accessible package. See Section 1.10 for more information on this pragma.

RESTRICT_REFERENCES

Tells the compiler the purity level of a packaged program. The purity level is the degree to which a program does not read/write database tables and/or package variables. See Section 1.15 for more information on this pragma.

SERIALLY_REUSABLE

Tells the runtime engine that package data should not persist between references. This is used to reduce per-user memory requirements when the package data is only needed for the duration of the call and not for the duration of the session. See Section 1.14 for more information on this pragma.

AUTONOMOUS_TRANSACTION

Starting in Oracle8i, tells the compiler that the function, procedure, top-level anonymous PL/SQL block, object method, or database trigger executes in its own transaction space. See Section 1.8 for more information on this pragma.

1.4.8 Statements

A PL/SQL program is composed of one or more logical statements. A statement is terminated by a semicolon delimiter. The physical end-of-line marker in a PL/SQL program is ignored by the compiler, except to terminate a single-line comment (initiated by the ? symbol).

1.4.9 Block Structure

Each PL/SQL program is a block consisting of a standard set of elements, identified by keywords (see Figure 1-1). The block determines the scope of declared elements, and how exceptions are handled and propagated. A block can be anonymous or named. Named blocks include functions, procedures, packages, and triggers.

Figure 1-1. The PL/SQL block structure
figs/sqlPR2.01.gif

Here is an example of an anonymous block:

DECLARE
   today DATE DEFAULT SYSDATE;
BEGIN
   -- Display the date. 
   DBMS_OUTPUT.PUT_LINE ('Today is ' || today);
END;

Here is a named block that performs the same action:

CREATE OR REPLACE PROCEDURE show_the_date
IS
   today DATE DEFAULT SYSDATE;
BEGIN
   -- Display the date. 
   DBMS_OUTPUT.PUT_LINE ('Today is ' || today);
END show_the_date; 

The following table summarizes the sections of a PL/SQL block:

Section

Description

Header

Required for named blocks. Specifies the way the program is called by other PL/SQL blocks. Anonymous blocks do not have a header. They start with the DECLARE keyword if there is a declaration section, or with the BEGIN keyword if there are no declarations.

Declaration

Optional; declares variables, cursors, TYPEs, and local programs that are used in the block's execution and exception sections.

Execution

Optional in package and TYPE specifications; contains statements that are executed when the block is run.

Exception

Optional; describes error-handling behavior for exceptions raised in the executable section.