- Edited
Hi
I need to generate an Mysql query that will give me a pivot of Agent wise month wise closed tickets like the below format.
This query gives me agent wise total count of tickets. but i need the same month wise in columns.
Any help is appreciated
select count(t.num), t.staffname
from (
select osticketdb_ticket.number as num, osticketdb_staff.username as staffname
from osticketdb_ticket
join osticketdb_staff on osticketdb_staff.staff_id = osticketdb_ticket.staff_id
where osticketdb_ticket.status_id = 2 AND osticketdb_staff.username IN('Prakashj','haleemk')
AND osticketdb_ticket.created BETWEEN '2023-04-01' AND '2023-09-30'
) as t
group by t.staffname;