Att sätta detta svar eftersom inget erbjudits hittills är korrekt
select count(case when status = "accepted" then 1 end) /
count(case when status = "rejected" then 1 end) as Ratio
from my_table
where status in ("accepted","rejected")
Om du också behöver de individuella räkningarna
select count(case when status = "accepted" then 1 end) Accepted,
count(case when status = "rejected" then 1 end) Rejected,
count(case when status = "accepted" then 1 end) /
count(case when status = "rejected" then 1 end) as Ratio
from my_table
where status in ("accepted","rejected")
Obs! MySQL har inget problem med dividera med noll. Den returnerar NULL när Rejected är 0.