我有以下查询:
select `state` from `table1`
where `state` in ('NC','North Carolina','TN','Tennessee','CO','Colorado','NM','New Mexico','UT','Utah')
limit 200 offset 0
我需要按state
出现在我的where
子句中的结果排序(即 first NC
, then TN
, then CO
,依此类推)。
我怎样才能做到这一点?我尝试使用order by
,但没有给出这个结果。