排序的问题。。。。。
select * from table where id in(13557,610,3067,215,9139,1313,5705,2156,2486,5913)
order by (13557,610,3067,215,9139,1313,5705,2156,2486,5913)
怎么根据 13557,610,3067,215,9139,1313,5705,2156,2486,5913 来排序
[解决办法]
select * from table where id in(13557,610,3067,215,9139,1313,5705,2156,2486,5913)order by charindex(rtrim(ID),'13557,610,3067,215,9139,1313,5705,2156,2486,5913')
[解决办法]
select * from table where id in(13557,610,3067,215,9139,1313,5705,2156,2486,5913)order by charindex(','+rtrim(ID)+',',',13557,610,3067,215,9139,1313,5705,2156,2486,5913,')
[解决办法]
或用patindex,要通用需要加上','有条件类似用符号分隔(1,11,111)
这类
select * from table where id in(13557,610,3067,215,9139,1313,5705,2156,2486,5913)order by patindex('%,'+rtrim(ID)+',%',',13557,610,3067,215,9139,1313,5705,2156,2486,5913,')