I need to do something like the following:
SELECT * FROM Video WHERE visible = 1 ORDER BY votesUp/votesDown DESC
But I'm aware that votesDown
can bear 0 (zero) as its value. How can I workaround to avoid the division by zero?
OBS: In my case, it's okay to make votesDown
turn to 1, when 0.
With
IF()
function, you can convert0
to1
. Could you try this?