1. nlssort函数的作用是对字段排序,字符串类型的

  2. 1.按拼音排序:

    select * from MEMBER t order by NLSSORT(t.b,'NLS_SORT = SCHINESE_PINYIN_M')

    Oracle的nlssort函数




  3. 2.按笔画排序:

    select * from MEMBER t order by NLSSORT(t.b,'NLS_SORT = SCHINESE_STROKE_M')

    Oracle的nlssort函数





  4. 3.按部首排序:

    select * from MEMBER t order by NLSSORT(t.b,'NLS_SORT = SCHINESE_RADICAL_M')

    Oracle的nlssort函数

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-22
  • 2022-03-10
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-11-14
  • 2021-12-13
  • 2021-11-14
  • 2022-03-05
  • 2021-10-26
  • 2021-12-18
相关资源
相似解决方案