docs/sql-ref-scripting.md
You can employ powerful procedural logic using SQL/PSM standard-based scripting syntax.
Any SQL script consists of and starts with a compound statement block (BEGIN ... END).
A compound statement starts with a section to declare local variables, user-defined conditions, and condition handlers, which are used to catch exceptions.
This is followed by the compound statement body, which consists of:
ALTER, CREATE, DROP.There are two ways to pass data to and from a SQL script:
Variables declared within a compound statement can be referenced in any expression within a compound statement. Spark resolves identifiers from the innermost scope outward, following the rules described in Name Resolution. You can use the optional compound statement labels to disambiguate duplicate variable names.
SQL Scripting supports condition handlers, which are used to intercept and process exceptions to EXIT processing of the SQL script.
Condition handlers can be defined to handle three distinct classes of conditions:
One or more named conditions that can be a specific Spark-defined error class such as DIVIDE_BY_ZERO or a user-declared condition.
These handlers handle these specific conditions.
One or more SQLSTATEs, that can be raised by Spark.
These handlers can handle any condition associated with that SQLSTATE.
A generic SQLEXCEPTION handler can catch all conditions falling into the SQLEXCEPTION (any SQLSTATE which is not XX*** and not 02***).
The following are used to decide which condition handler applies to an exception. This condition handler is called the most appropriate handler:
A condition handler cannot apply to any statement defined in its own body or the body of any condition handler declared in the same compound statement.
The applicable condition handlers defined in the innermost compound statement within which the exception was raised are appropriate.
If more than one appropriate handler is available, the most specific handler is the most appropriate.
For example, a handler on a named condition is more specific than one on a named SQLSTATE.
A generic EXCEPTION handler is the least specific.
The outcome of a condition handler is to execute the statement following the compound statement that declared the handler to execute next.
The following is a list of supported control flow statements: