-- ## 28: Open RFCs ## -- -- A query to show all open RFCs SELECT p.value AS __color__, milestone||' Release' AS __group__, id AS ticket, summary, component, version, 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 status <> 'closed' AND t.type IN ('RFC') ORDER BY (milestone IS NULL),milestone, p.value, t.type, time