-- ## 3: Active Tickets by Milestone ## -- SELECT p.value AS __color__, 'Milestone: ' || (CASE WHEN milestone='' THEN 'none' ELSE milestone END) AS __group__, id AS ticket, summary, component, version, t.type AS type, owner, status, changetime AS modified, time AS _time, description AS _description, reporter AS _reporter FROM ticket t LEFT JOIN enum p ON p.name = t.priority AND p.type = 'priority' WHERE status <> 'closed' ORDER BY (milestone='') ASC, milestone, p.value, (CASE WHEN t.type='defect' THEN 'aaa' WHEN t.type='task' THEN 'aab' WHEN t.type='enhancement' THEN 'aac' ELSE t.type END), changetime DESC