所以,我有这个:
select ticket_trackingno, ticket_title, ticket_priority_id, ticket_status_id
from hd_tickets
where ticket_priority_id <> 'None'
and ticket_status_id = 'Assigned'
order by ticket_priority_id desc
有了这个,我的 ticket_priority_id 列被排序为 med、low、high。我想要的是低、中、高。我想知道我该怎么做呢?