-
order by
-
case `A1`
-
when a2 then 1 // 当值为a2,排在第一个
-
when a3 then 2 // 当值为a3,排在第二个
-
when a1 then 3 // 当值为a1,排在第三个
-
end
-
asc // 按上面顺序,正序排列(也可为desc)
order by
case `A1`
when a2 then 1 // 当值为a2,排在第一个
when a3 then 2 // 当值为a3,排在第二个
when a1 then 3 // 当值为a1,排在第三个
end
asc // 按上面顺序,正序排列(也可为desc)