-- ## 7: My Tickets ## -- -- If you're logged in, you can see all tickets for which you are the owner SELECT p.value AS __color__, (CASE status WHEN 'accepted' THEN 'Accepted' ELSE 'Owned' END) AS __group__, id AS ticket, summary, d.value AS difficulty, component, version, milestone, t.type AS type, priority, time AS created, changetime AS _changetime, t.description AS _description, reporter AS _reporter FROM ticket t LEFT JOIN enum p ON p.name = t.priority AND p.type = 'priority' LEFT JOIN ticket_custom d ON (t.id = d.ticket AND d.name = 'difficulty') WHERE t.status <> 'closed' AND owner = $USER ORDER BY (status = 'accepted') DESC, CAST(p.value AS int), milestone, t.type, time