我想为活动工单报告中显示的每张工单添加回复计数。
这是我当前的查询:
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
是否可以添加回复/评论计数?