select SUBSTR(date,6,2) as เดือน,count(เรื่องที่เข้ามา) as จำนวนเรื่องที่เข้ามา
from ตารางของคุณ
where date between '2012-01-01' and '2012-12-31'
group by SUBSTR(date,6,2)
SELECT SUBSTR(a.date,6,2) as เดือน,count(a.id_in) AS จำนวนเรื่องที่เข้ามา ,count(a.status = 'FPO') AS เรื่องร้องทุกข์
FROM doc_in a
WHERE a.date between '2555-02-14'AND '2557-02-14' GROUP BY SUBSTR(a.date,6,2)