Graphic Syntax Diagrams
Syntax diagrams are drawings that illustrate valid SQL syntax. To read a diagram, trace it from left to right, in the direction shown by the arrows.
Commands and other keywords appear in UPPERCASE inside rectangles. Type them exactly as shown in the rectangles. Parameters appear in lowercase inside ovals. Variables are used for the parameters. Punctuation, operators, delimiters, and terminators appear inside circles.
If the syntax diagram has more than one path, then you can choose any path. For example, in the following syntax you can specify either NOPARALLEL
or PARALLEL
:
parallel_clause::=
If you have the choice of more than one keyword, operator, or parameter, then your options appear in a vertical list. For example, in the following syntax diagram, you can specify one or more of the four parameters in the stack:
physical_attributes_clause::=
The following table shows parameters that appear in the syntax diagrams and provides examples of the values you might substitute for them in your statements:
Table A-1 Syntax Parameters
Parameter | Description | Examples |
---|---|---|
|
The substitution value must be the name of an object of the type specified by the parameter. For a list of all types of objects, see the section, "Schema Objects". |
|
|
The substitution value must be a single character from your database character set. |
|
|
The substitution value must be a text string in single quotation marks. See the syntax description of ' |
|
|
The substitution value must be an expression of data type |
|
|
The substitution value must be a condition that evaluates to |
|
|
The substitution value must be a date constant or an expression of |
|
|
The substitution value can be an expression of any data type as defined in the syntax description of expr in "About SQL Expressions". |
|
|
The substitution value must be an integer as defined by the syntax description of integer in "Integer Literals". |
|
|
The substitution value must be an expression of |
|
|
The substitution value must be an expression of data type |
|
|
The substitution value must be a |
|
|
The substitution value must be the name of a nondefault database in an embedded SQL program. |
|
|
The substitution value must be the database identification string for an Oracle Net database connection. For details, see the user's guide for your specific Oracle Net protocol. |
— |
Required Keywords and Parameters
Required keywords and parameters can appear singly or in a vertical list of alternatives. Single required keywords and parameters appear on the main path, which is the horizontal line you are currently traveling. In the following example, library_name
is a required parameter:
drop_library::=
If there is a library named HQ_LIB
, then, according to the diagram, the following statement is valid:
DROP LIBRARY hq_lib;
If multiple keywords or parameters appear in a vertical list that intersects the main path, then one of them is required. You must choose one of the keywords or parameters, but not necessarily the one that appears on the main path. In the following example, you must choose ALL
, STANDBY
, or NONE
:
security_clause::=
Optional Keywords and Parameters
If keywords and parameters appear in a vertical list above the main path, then they are optional. In the following example, instead of traveling down a vertical line, you can continue along the main path:
deallocate_unused_clause::=
size_clause::=
According to the diagrams, all of the following statements are valid:
DEALLOCATE UNUSED; DEALLOCATE UNUSED KEEP 1000; DEALLOCATE UNUSED KEEP 10G; DEALLOCATE UNUSED 8T;
Syntax Loops
Loops let you repeat the syntax within them as many times as you like. In the following example, after choosing one value expression, you can go back repeatedly to choose another, separated by commas.
query_partition_clause::=