有表: mytable(i int,c char(50))
查询:select * from mytable where i IN(1,3,5,2,4,6)
希望其结果集的顺序也是按i,1,3,5,2,4,6排列,
是否有SQL查询语句可以直接搞定?