Variable Naming Rules : Introduction « PL SQL Data Types « Oracle PL/SQL Tutorial






Variable names can be composed of letters, dollar signs, underscores, and number signs.

No other characters can be used.

A variable name must start with a letter, after which any combination of the allowed characters can be used.

The maximum length for a variable name is 30 characters.

Variable names, like those of keywords and other identifiers, are not case sensitive.









21.1.Introduction
21.1.1.Block Structure
21.1.2.Your First PL/SQL Block
21.1.3.The slash character (/) at the end of the example executes the PL/SQL.
21.1.4.You can declare the whole string to be enclosed in quotes by using the construct q'!text!'
21.1.5.All identifiers within the same scope must be unique.
21.1.6.Building Expressions with Operators
21.1.7.PL/SQL datatypes
21.1.8.Variable Naming Rules
21.1.9.Introducing the Main Data type Groups