Menempatkan jawaban ini karena sejauh ini tidak ada yang benar
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")
Jika Anda juga membutuhkan jumlah individu
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")
Catatan:MySQL tidak memiliki masalah pembagian dengan nol. Ini mengembalikan NULL ketika Ditolak adalah 0.