SELECT f43_person.HOSPCODE as รหัส
,count(case when f43_specialpp.PPSPECIAL LIKE '1B20%' then 1 else null end) as การเคลื่อนไหว
,count(case when f43_specialpp.PPSPECIAL LIKE '1B21%' then 2 else null end) as กล้ามเนื้อและสติปัญญษ
,count(case when f43_specialpp.PPSPECIAL LIKE '1B23%' then 3 else null end) as เข้าใจภาษา ####
,count(case when f43_specialpp.PPSPECIAL LIKE '1B24%' then 5 else null end) as ช่วยเหลือตัวเองและสังคม
FROM f43_person
INNER JOIN f43_specialpp on f43_specialpp.CID = f43_person.CID and f43_person.TYPEAREA in (1,3)
WHERE f43_specialpp.DATE_SERV >= '20151001'
and TIMESTAMPDIFF(YEAR,f43_person.BIRTH,'2015-10-01') <= 5
#GROUP BY CID
group BY f43_person.HOSPCODE