My SQL expression which works fine displays results for months and it will be OK for this year.But after one year I know it will include results from this year. How to show results only from current year?
select case month(timestamp_iso(STATUSDATE))
when 1 then 'January'
when 2 then 'February'
when 3 then 'March'
when 4 then 'April'
when 5 then 'May'
when 6 then 'Jun'
when 7 then 'July'
when 8 then 'August'
when 9 then 'September'
when 10 then 'October'
when 11 then 'November'
when 12 then 'December'
end as Month,
count (case when service='ADSL' then 1 end) as ADSL,
count (*) as ALL
from INCIDENT
group by month(timestamp_iso(STATUSDATE))
Thanks
add a
whereclause to the end: