NLS_LOWER(x[, y])
返回字符串并将字符串的变为小写
x 字符型表达式
y 可选参数,指定排序的方式(nls_sort=),如下:
SCHINESE_RADICAL_M(部首、笔画)
SCHINESE_STROKE_M(笔画、部首 SCHINESE_PINYIN_M(拼音))
字符型
SQL> select nls_LOWER('ab cde') "test", nls_LOWER('a c b d e','nls_sort= SCHINESE_PINYIN_M') "test1" from dual; test test1 ------ --------- ab cde a c b d e