The VALUES INTO statement produces a result table consisting of at most one row and assigns the values in that row to variables.
This statement can be embedded in an application program. It is an executable statement that can be dynamically prepared, but cannot be issued interactively. It must not be specified in Java™.
If a row-fullselect is specified, see Queries for an explanation of the authorization required for each subselect.
.-,--------. V | >>-VALUES--+-+-expression-+---------------+--INTO----variable-+->< | '-NULL-------' | | .-,--------------. | | V | | '-(--+---+-expression-+-+-+--)-' | '-NULL-------' | '-row-fullselect-----'
Variable assignment: Each assignment to a variable is performed according to the retrieval assignment rules described in Assignments and comparisons. If the number of variables is less than the number of values in the row, an SQL warning (SQLSTATE 01503) is returned (and the SQLWARN3 field of the SQLCA is set to 'W'). Note that there is no warning if there are more variables than the number of result columns. If a value is null, an indicator variable must be provided for that value.
If the specified variable is character and is not large enough to contain the result, a warning (SQLSTATE 01004) is returned (and 'W' is assigned to SQLWARN1 in the SQLCA). The actual length of the result may be returned in the indicator variable associated with the variable, if an indicator variable is provided. For further information, see References to variables.
If an assignment error occurs, the value is not assigned to the variable, and no more values are assigned to variables. Any values that have already been assigned to variables remain assigned.
If the specified variable is a C NUL-terminated host variable and is not large enough to contain the result and the NUL-terminator:
Result column evaluation considerations: If an error occurs while evaluating a result column in the expression list of a VALUES INTO statement as the result of an arithmetic expression (such as division by zero, or overflow) or a numeric or character conversion error, the result is the null value. As in any other case of a null value, an indicator variable must be provided. The value of the variable is undefined. In this case, however, the indicator variable is set to the value of -2. Processing of the statement continues and a warning is returned. If an indicator variable is not provided, an error is returned and no more values are assigned to variables. It is possible that some values have already been assigned to variables and will remain assigned when the error is returned.
When a datetime value is returned, the length of the variable must be large enough to store the complete value. Otherwise, depending on how much of the value would have to be truncated, a warning or error is returned. See Datetime assignments for details.
Example 1: Assign the value of the CURRENT PATH special register to host variable HV1.
EXEC SQL VALUES CURRENT PATH
INTO :HV1;
Example 2: Assume that LOB locator LOB1 is associated with a CLOB value. Assign a portion of the CLOB value to host variable DETAILS using the LOB locator, and assign CURRENT TIMESTAMP to the host variable TIMETRACK.
EXEC SQL VALUES (SUBSTR(:LOB1,1,35), CURRENT TIMESTAMP) INTO :DETAILS, :TIMETRACK;