各位大佬,怎么根据第几次排序
自定义函数解决汉字转阿拉伯数字。
参考文档: https://blog.csdn.net/rentian1/article/details/78498975
给该列设置一个序号
例如
case
when cs = ‘第一次’ then 1
when cs = ‘第二次’ then 2
when cs = ‘第三次’ then 3
when cs = ‘第四次’ then 4
when cs = ‘第五次’ then 5
else 0 end as xh
然后再对这个序号进行order by排序
当然只限于数据量交小的情况下= =