Consider the following stored procedure spSample1 that has three IN parameters, p1, p2, and p3 of INTEGER data type. The argument list can be specified in either of the following formats:
CALL spSample1 (1, 2, 3); CALL spSample1(1, CAST(((2 + 4) * 2) AS FORMAT 'ZZZ9'), 3);
The rule of specifying the arguments as a positional list applies to all arguments (IN, INOUT, or OUT).