数据排序问题??
表中有记录为:
1 asdfsf 正常
2 adfsdfs 正常
3 ssssss 加急
5 ksdfjslf 满
请问怎么按
加急
正常
满
的顺序排序呢?
[解决办法]
可以用
select * from Table where xx= "加急 "
union
select * from Table where xx= "正常 "
union
select * from Table where xx= "满 "