SELECT COUNT(*) FROM (
SELECT p.value AS __color__,
id AS ticket, summary, component,
status, t.type AS type, resolution,
changetime AS _changetime, description AS _description,
reporter AS _reporter
FROM ticket t
LEFT JOIN enum p ON p.name = t.priority AND p.type = 'priority'
WHERE datetime(t.time, 'unixepoch') > datetime('now', '-6 month')
ORDER BY status, type, resolution
) AS tab
Note:
See TracReports
for help on using and creating reports.