EXECUTE
From SQL PL Guide for DB2
EXECUTE statement
The EXECUTE statement is executing a prepared dynamic statement. This statement required an already prepared statement by the PREPARE statement. In contrast to the EXECUTE IMMEDIATE statement the execute statement will be used when you're executing a statement multiple times.
Syntax:
EXECUTE <statement-name> [INTO <result-variable>] [USING <input-variable> [,<input-variable>,...] ]
Example:
...comming soon...