Syntax options: INTO parameter | INTO qualified-parameter | INTO variable Specifies a list of parameters, qualified parameters (host structures), or variables to receive the values SQL retrieves from the row of the cursor's result table. The number of parameters or variables in the list must be the same as the number of values in the row. (If any of the parameters is a host structure, SQL counts the number of parameters in that structure when it compares the number of host parameters in the INTO clause with the number of values in the row.) The data types of parameters and variables must be compatible with the values of the corresponding column of the cursor row.