Oracle按字段的笔画,部首,拼音的排序方法

1)按笔画排序  select * from Table order by nlssort(columnName,'NLS_SORT=SCHINESE_STROKE_M') 
2)按部首排序  select * from Table order by nlssort(columnName,'NLS_SORT=SCHINESE_RADICAL_M') 
3)按拼音排序  select * from Table order by nlssort(columnName,'NLS_SORT=SCHINESE_PINYIN_M');
原文地址:https://www.cnblogs.com/zhoumingxiu/p/3408277.html