हाँ, आप एक केस कर सकते हैं:
select case when noOfGirls=0 then noOfBoys
else round(noOfBoys/noOfGirls) end as ration
from student;
लेकिन आप शायद चाहते हैं:
select case when noOfGirls=0 then 1
else round(noOfBoys/noOfGirls) end as ration
from student;