Se ho letto bene, dovresti usare una clausola group-by o almeno una where per limitare le cose solo all'intervallo di tempo che desideri:
SELECT incMonth AS Month, SUM(IF(item_type IN('typ1', 'typ2'), 1, 0)) AS 'Total Sales'
FROM tester
GROUP BY incMonth