I'd like to add a count of replies for each ticket shown in the Active Ticket report.
Here's my current query:
SELECT p.value AS __color__,
id AS ticket, summary, component, version, milestone, t.type AS type,
reporter, owner, status,
time AS created,
changetime AS _changetime, description AS _description,
date(changetime / 1000000, 'unixepoch') as LastUpdate,
reporter AS _reporter
FROM ticket t
LEFT JOIN enum p ON p.name = t.priority AND p.type = 'priority'
WHERE status <> 'closed'
ORDER BY CAST(p.value AS integer), milestone, t.type, time
Is it possible to add the reply/comment count?