All sources I found today say that if I need to divide one value let's say Profit on another one, let's say Selling price (markup), I need to use / operator, so:
Select Profit/SellingPrice AS Markup from...
By some reason I always get ZERO when Profit is smaller than SellingPrice.
Both columns in the table are MONEY type, not integers or something like that
Why is that?

Thank you.