BMS-HOSxP Community

HOSxP => รายงานตัวชี้วัด 66 ตัวของกระทรวงสาธารณสุข => ข้อความที่เริ่มโดย: manoi ที่ เมษายน 02, 2013, 15:58:37 PM

หัวข้อ: 12. ร้อยละของเด็ก 0-2 ปี ได้รับวัคซีนทุกประเภทตามเกณฑ์ไม่น้อยกว่าร้อยละ 90
เริ่มหัวข้อโดย: manoi ที่ เมษายน 02, 2013, 15:58:37 PM
ข้อมูล A1 จำนวนเด็กอายุครบ 1 ปี ที่อยู่อาศัยในพื้นที่ในงวดรายงานนั้น ที่ได้รับวัคซีน BCG

select count(distinct p1.person_id )
from person p1,person_wbc p2,person_wbc_service p3,person_wbc_vaccine_detail p4,wbc_vaccine p5
where p1.person_id = p2.person_id
and p2.person_wbc_id = p3.person_wbc_id
and p3.person_wbc_service_id = p4.person_wbc_service_id
and p4.wbc_vaccine_id = p5.wbc_vaccine_id
and p5.wbc_vaccine_code = 'BCG'
and p2.discharge = 'Y'
and p1.in_region = 'Y'
and p1.birthdate between 'yyyy-mm-dd1' and 'yyyy-mm-dd2'


ข้อมูล A2 จำนวนเด็กอายุครบ 1 ปี ที่อยู่อาศัยในพื้นที่ในงวดรายงานนั้น ที่ได้รับวัคซีน DTP-HB3

select count(distinct p1.person_id )
from person p1,person_wbc p2,person_wbc_service p3,person_wbc_vaccine_detail p4,wbc_vaccine p5
where p1.person_id = p2.person_id
and p2.person_wbc_id = p3.person_wbc_id
and p3.person_wbc_service_id = p4.person_wbc_service_id
and p4.wbc_vaccine_id = p5.wbc_vaccine_id
and p5.wbc_vaccine_code in ('DTPHB3','DTP3','HBV3')
and p2.discharge = 'Y'
and p1.in_region = 'Y'
and p1.birthdate between 'yyyy-mm-dd1' and 'yyyy-mm-dd2'


ข้อมูล A3 จำนวนเด็กอายุครบ 1 ปี ที่อยู่อาศัยในพื้นที่ในงวดรายงานนั้น ที่ได้รับวัคซีน OPV3

select count(distinct p1.person_id )
from person p1,person_wbc p2,person_wbc_service p3,person_wbc_vaccine_detail p4,wbc_vaccine p5
where p1.person_id = p2.person_id
and p2.person_wbc_id = p3.person_wbc_id
and p3.person_wbc_service_id = p4.person_wbc_service_id
and p4.wbc_vaccine_id = p5.wbc_vaccine_id
and p5.wbc_vaccine_code = 'OPV3'
and p2.discharge = 'Y'
and p1.in_region = 'Y'
and p1.birthdate between 'yyyy-mm-dd1' and 'yyyy-mm-dd2'


ข้อมูล A4 จำนวนเด็กอายุครบ 2 ปี ที่อยู่อาศัยในพื้นที่ในงวดรายงานนั้น ที่ได้รับวัคซีน DTP4
select  count(distinct p1.person_id )
from person p1,person_epi p2,person_epi_vaccine p3,person_epi_vaccine_list p4,epi_vaccine p5
where p1.person_id = p2.person_id
and p2.person_epi_id = p3.person_epi_id
and p3.person_epi_vaccine_id = p4.person_epi_vaccine_id
and p4.epi_vaccine_id = p5.epi_vaccine_id
and p5.vaccine_code = 'DTP4'
and p2.discharge = 'Y'
and p1.in_region = 'Y'
and p1.birthdate between 'yyyy-mm-dd1' and 'yyyy-mm-dd2'


ข้อมูล A5 จำนวนเด็กอายุครบ 2 ปี ที่อยู่อาศัยในพื้นที่ในงวดรายงานนั้น ที่ได้รับวัคซีน OPV4
select  count(distinct p1.person_id )
from person p1,person_epi p2,person_epi_vaccine p3,person_epi_vaccine_list p4,epi_vaccine p5
where p1.person_id = p2.person_id
and p2.person_epi_id = p3.person_epi_id
and p3.person_epi_vaccine_id = p4.person_epi_vaccine_id
and p4.epi_vaccine_id = p5.epi_vaccine_id
and p5.vaccine_code = 'OPV4'
and p2.discharge = 'Y'
and p1.in_region = 'Y'
and p1.birthdate between 'yyyy-mm-dd1' and 'yyyy-mm-dd2'


ข้อมูล A6 จำนวนเด็กอายุครบ 2 ปี ที่อยู่อาศัยในพื้นที่ในงวดรายงานนั้น ที่ได้รับวัคซีน JE2
select  count(distinct p1.person_id )
from person p1,person_epi p2,person_epi_vaccine p3,person_epi_vaccine_list p4,epi_vaccine p5
where p1.person_id = p2.person_id
and p2.person_epi_id = p3.person_epi_id
and p3.person_epi_vaccine_id = p4.person_epi_vaccine_id
and p4.epi_vaccine_id = p5.epi_vaccine_id
and p5.vaccine_code = 'JE2'
and p2.discharge = 'Y'
and p1.in_region = 'Y'
and p1.birthdate between 'yyyy-mm-dd1' and 'yyyy-mm-dd2'



ข้อมูล B  จำนวนเด็กอายุครบ 1 ปี ที่อยู่อาศัยในพื้นที่ในงวดรายงานนั้น

select count(distinct p1.person_id )
from person p1,person_wbc p2
where p1.person_id = p2.person_id
and p2.discharge = 'Y'
and p1.in_region = 'Y'
and p1.birthdate between 'yyyy-mm-dd1' and 'yyyy-mm-dd2'
หัวข้อ: Re: 12. ร้อยละของเด็ก 0-2 ปี ได้รับวัคซีนทุกประเภทตามเกณฑ์ไม่น้อยกว่าร้อยละ 90
เริ่มหัวข้อโดย: udomchok ที่ เมษายน 02, 2013, 16:06:02 PM
เหนื่อยแล้วก็พักซะหน่อยนะครับ  ;D ;D ;D ;D
หัวข้อ: Re: 12. ร้อยละของเด็ก 0-2 ปี ได้รับวัคซีนทุกประเภทตามเกณฑ์ไม่น้อยกว่าร้อยละ 90
เริ่มหัวข้อโดย: manoi ที่ เมษายน 02, 2013, 16:07:05 PM
ขอบคุณครับ  :)
หัวข้อ: Re: 12. ร้อยละของเด็ก 0-2 ปี ได้รับวัคซีนทุกประเภทตามเกณฑ์ไม่น้อยกว่าร้อยละ 90
เริ่มหัวข้อโดย: aekunited ที่ เมษายน 02, 2013, 16:08:08 PM
เป็นกำลังใจให้ครับผม จะได้นำข้อมูลไปเทียบกับ datacenter พอดีเลยครับ
หัวข้อ: Re: 12. ร้อยละของเด็ก 0-2 ปี ได้รับวัคซีนทุกประเภทตามเกณฑ์ไม่น้อยกว่าร้อยละ 90
เริ่มหัวข้อโดย: chisuka_kic ที่ เมษายน 02, 2013, 16:29:58 PM
 ;D ;D ;D ;D ;D ;D ;D......ถ้าอาจารย์ทานของหวานได้นะ.....กิ๊กจะชวนไปทานไอติมให้หายเหนื่อยเลยคะ....
หัวข้อ: Re: 12. ร้อยละของเด็ก 0-2 ปี ได้รับวัคซีนทุกประเภทตามเกณฑ์ไม่น้อยกว่าร้อยละ 90
เริ่มหัวข้อโดย: worawit ที่ เมษายน 02, 2013, 22:18:12 PM
ตามมาเป็นกำลังใจให้อาจารย์และกด Like ครับ
หัวข้อ: Re: 12. ร้อยละของเด็ก 0-2 ปี ได้รับวัคซีนทุกประเภทตามเกณฑ์ไม่น้อยกว่าร้อยละ 90
เริ่มหัวข้อโดย: JACK_LOMKAO ที่ เมษายน 03, 2013, 08:10:31 AM
เหนื่อยได้ แต่อย่าท้อครับอาจารย์  :D
หัวข้อ: Re: 12. ร้อยละของเด็ก 0-2 ปี ได้รับวัคซีนทุกประเภทตามเกณฑ์ไม่น้อยกว่าร้อยละ 90
เริ่มหัวข้อโดย: chk ที่ เมษายน 03, 2013, 08:30:02 AM
 8)  พึ่ง  12 เองขอรับ อ.MN  อีกตั้ง 54  ตัว  นะ  สู้ ๆ ๆ  ขอรับ   8)  8)  8)
หัวข้อ: Re: 12. ร้อยละของเด็ก 0-2 ปี ได้รับวัคซีนทุกประเภทตามเกณฑ์ไม่น้อยกว่าร้อยละ 90
เริ่มหัวข้อโดย: pitut ที่ กันยายน 28, 2013, 17:38:23 PM
ข้อมูลBCG DTP และวัคซีนอื่นที่คีเก็บความครอบคลุม ซึ่งส่วนใหญ่คีย์ย้อนหลัง พบว่าส่ง21แฟ้ม ออกบ้าง ไม่ออกบ้าง  จึงทดสอบ ในเวอร์ชั่น3.56.8....พบว่ากรณีจะส่งออกย้อนหลัง ต้องติ๊กบังคับส่งออกและกำหนดวันเดือนปีเป็นเดือนนั้นๆด้วย ในหน้าระบบบัญชี 2 และในหน้าส่งออก   ตามความเข้าใจเดิมคิดว่าช่องติ๊กบังคับส่งออกจะมีผลแต่แฟ้มppพบว่ามีผลต่อแฟ้ม epiด้วยค่ะ  แต่43แฟ้มนี่ยังไม่ได้ลองค่ะ