I have a problem!
When running a statement, which will select a field which is calculated by three INTEGER fields, the result will be INTEGER, too.
expl1:
select a.int1*a.int2/a.int3 as res from a
I need the field as an decimal (18,2).
I tried it twice
expl2:
select...