0
我想爲「活動故障單」報告中顯示的每張故障單添加回復計數。顯示Trac回覆/評論數量
這裏是我當前的查詢:
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
是否有可能添加的回覆/評論數?