Why does SELECT 2 * 4 * ( 5 / 2) * 4 return 64 instead of 80?
The real query I'm running looks like this:
SELECT 2 * equity_gains_score * (tenure_score / 2) * investor_score AS propensity
but I had the same result when I ran it substituting numbers for columns. How can I fix this statement?