- Edited
No problem @[deleted] :)SELECT ost_ticket.number AS "Ticket Number", ost_ticket__cdata.subject AS "Subject", ost_user.name AS "Created By", CONCAT(ost_staff.firstname," ", ost_staff.lastname) AS "Agents Name", SUM(ost_thread_entry.time_spent) AS "Time Spent", CONCAT("https://your.osticket.com/scp/tickets.php?id=",ost_ticket.ticket_id) AS "Link" FROM ost_ticket LEFT JOIN ost_staff ON ost_ticket.staff_id=ost_staff.staff_id, ost_thread_entry, ost_thread, ost_ticket__cdata, ost_user WHERE ost_ticket.ticket_id=ost_thread.object_id AND ost_thread.id=ost_thread_entry.thread_id AND ost_ticket.ticket_id=ost_ticket__cdata.ticket_id AND ost_ticket.user_id=ost_user.id AND ost_ticket.created>='2017-01-01' AND ost_ticket.created<='2017-02-01' AND ost_user.name='Full Name' GROUP BY ost_ticket.ticket_id;This will add another column, Created By, if you wish to look for a particular user, then use AND ost_user.name='Full name'