ข้อมูล A จำนวนทารกแรกเกิดที่ Apgar Score 1 นาที น้อยกว่า หรือเท่ากับ 7 จะหาได้จากคำสั่ง
select count(i5.ipt_labour_infant_id) as cc
from ipt_labour_complication i1,ipt_labour i2,ipt i3, ipt_pregnancy i4,ipt_labour_infant i5
where i1.labour_complication_id = 9 and
i1.ipt_labour_id = i2.ipt_labour_id
and i5.ipt_labour_id = i2.ipt_labour_id
and i5.infant_dchstts in ('04','05') and i5.apgar_score_min1 <= 7
and i2.an = i3.an and i3.an = i4.an and i4.deliver_type in (1,2)
and i3.dchdate between 'yyyy-mm-dd1' and 'yyyy-mm-dd2'
ข้อมูล B จำนวนทารกเกิดมีชีพทั้งหมด จะหาได้จากคำสั่ง
select count(i5.ipt_labour_infant_id) as cc
from ipt_labour_complication i1,ipt_labour i2,ipt i3, ipt_pregnancy i4,ipt_labour_infant i5
where i1.labour_complication_id = 9 and
i1.ipt_labour_id = i2.ipt_labour_id
and i5.ipt_labour_id = i2.ipt_labour_id
and i5.infant_dchstts in ('04','05')
and i2.an = i3.an and i3.an = i4.an and i4.deliver_type in (1,2)
and i3.dchdate between 'yyyy-mm-dd1' and 'yyyy-mm-dd2'