具有数字和字母的“排序字符串”列(Oracle SQL)

时间:2018-08-23 14:38:56

标签: sql oracle sql-order-by natural-sort

我想对可以同时包含数字和字母的字符串列进行排序。

SQL脚本:

select distinct  a.UoA, b.rating , b.tot from omt_source a left join  
wlm_progress_Scored b
on a.UoA = b.UoA 
where a.UoA in (select UoA from UserAccess_dev
where trim(App_User) = lower(:APP_USER))
order by 
  regexp_substr(UoA, '^\D*') ,
  to_number(regexp_substr(UoA, '\d+'))--);

我当前得到的输出:

1  
2  
3  
4  
5  
6  
7  
8  
9  
10 
11 
12 
13 
14 
15 
16 
17 
18 
19 
20 
23 
26B
26A
27 
28 
30 
31 
32 
33 
34B
34A

但是,我希望2634以此顺序

26A
26B
34A
34B

任何建议都会很有帮助 谢谢

1 个答案:

答案 0 :(得分:0)

如果您的第一顺序by子句确保主要排序顺序基于UoA字段的数字分量,则您的第二顺序子句实际上可能只是UoA字段本身。即

    order by 
      regexp_substr(UoA, '^\D*'), UoA;