What are the data types of cola and colb?
What platform and DB2 version/release are you using?
Here is an example on DB2 9.7 for Windows.
Code:
------------------------------ Commands Entered ------------------------------
SELECT cola , colb
, cola / colb division
, MOD(cola/colb, 10) modulus
FROM(VALUES (191, 13) ) r(cola, colb);
------------------------------------------------------------------------------
COLA COLB DIVISION MODULUS
----------- ----------- ----------- -----------
191 13 14 4
1 record(s) selected.