select * from sport_bisai order by 比赛时间,状态就上面这样就可以了,中文字符排序,按拼音首字母来的,进行中(J),未开始(W),已结束(Y),J
select * from sport_bisai order by 比赛时间, case 状态 when '进行中' then 0 when '未开始' then 1 when '已结束' then 2 end