对于这种排序的问题处理,如果不是简单中英文排序,最好价格排序列,sortNum,起到排序的效果,复杂点如每个人有个自己的排序规则,可写个映射表存储每个人的排序规则,进行排序
select * from table
order by case when SSDW2='上诉人' then 0 else 1 end
用order by根据 反向则加上desc
select * from table order by case when SSDW2='上诉人' then 0 else 1 end
SELECT * FROM Studens order BY charindex(say,'上诉人',0) desc