#Dividing a/b
SELECT a / NULLIF(b, 0)
FROM t
#Replace the result of divide by zero with 0
SELECT COALESCE(dividend / NULLIF(divisor,0), 0)
FROM sometable
SELECT club_id,
males,
females,
males/NULLIF(females, 0) AS ratio
FROM school_clubs;