ANR2916E
The SQL data types data type and data type are incompatible for operator 'operator'.

Explanation

The data types of the operands are not compatible when used with the specified operator. For example, the expression 3 + 'abc' is not valid because the operand data types INTEGER and CHAR(3) are not compatible for the addition operator "+".

System action

The SQL query is terminated.

User response

None.