DB2 Version 10.1 for Linux, UNIX, and Windows

PIPE statement

The PIPE statement is used to return a row from a compiled table function.

Invocation

This statement can be embedded in a compound SQL (compiled) statement of an SQL table function. It is not an executable statement and cannot be dynamically prepared.

Authorization

No privileges are required to invoke the PIPE statement. However, the authorization ID of the statement must hold the necessary privileges to invoke any expression that is embedded in the PIPE statement.

Syntax

Read syntax diagramSkip visual syntax diagram
              .-,--------------.        
              V                |        
>>-PIPE--+-(----+-expression-+-+--)-+--------------------------><
         |      '-NULL-------'      |   
         +-(--row-fullselect--)-----+   
         +-row-expression-----------+   
         +-expression---------------+   
         '-NULL---------------------'   

Description

( expression, ... )
Specifies a row value is returned from the function. The number of expressions (or NULL keywords) in the list must match the RETURNS data type of the function and the value of each expression must be assignable to the corresponding column or field in the RETURNS data type of the function.
row-fullselect
Specifies a fullselect that returns a single row with the number of columns corresponding to the number of columns or fields in the RETURNS data type of the function. The value in each column of the row returned by the fullselect must be assignable to the corresponding column or field in the RETURNS data type of the function. If the result of the row fullselect is no rows, null values are returned.
row-expression
Specifies the row value is returned from the function. The number of fields in the row must match the RETURNS data type of the function and each field in the row must be assignable to the corresponding field in the RETURNS data type of the function. If the row-expression and the RETURNS data type are user-defined row types, the type names must be the same (SQLSTATE 42821).
expression
Specifies a scalar value is returned from the function. The RETURNS data type of the table function must have a single column and the expression value must be assignable to that column.
NULL
Specifies that a null value is returned from the function. A null value is returned for each column or row field.

Notes