-- ## 15: Closed Tickets about 2.0.1 development ... ## -- -- * List all tickets. -- * Color each row based on priority. SELECT p.value AS __color__, id AS ticket, summary, component, version, milestone, t.type AS type, owner, status, time AS created, 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 id >= 620 and status = 'closed' and version <> '1.1.7' ORDER BY id asc