Say I have two columns, A and B, which are of type DECIMAL(9,2).
DECIMAL(9,2)
Now, say I run the following query:
SELECT SUM(A) / SUM(B)
M