2015-06-21 44 views

回答

1
select * from your_table 
order by case when colA > 0 then 1 
       when colA = 0 then 2 
       when colA < 0 then 3 
     end, 
     colB 
相關問題