You can specify sub-statuses in the WHERE clause, for example:
WHERE tickets.ticket_status.id = 4
You can find out the ID of a particular sub-status by going to Admin > Ticket Structure > Statuses, and selecting the sub-status you want from the table:


SELECT tickets.id, tickets.subject, tickets.ticket_status.title
FROM tickets
WHERE tickets.ticket_status.id = 3
We have used tickets.ticket_status.title in the SELECT clause to display the correct sub-status name.