RTRIM(c1,[,c2])
删除右边出现的字符串
c1 字符串
c2 追加字符串,默认为空格
字符型
(1)使用 RTRIM 函数删除字符串右边的空格,如下:
SQL> select RTRIM('hello world ') from dual; RTRIM('HELL ----------- hello world
(2)使用 RTRIM 函数删除字符串右边的星号,如下:
SQL> select RTRIM('hello world****', '*') from dual; RTRIM('HELL ----------- hello world