Có, bạn có thể làm một trường hợp:
select case when noOfGirls=0 then noOfBoys
else round(noOfBoys/noOfGirls) end as ration
from student;
Nhưng bạn có thể muốn:
select case when noOfGirls=0 then 1
else round(noOfBoys/noOfGirls) end as ration
from student;