Oracle String/Char Function - Oracle/PLSQL RTRIM Function






This Oracle tutorial explains how to use the Oracle/PLSQL RTRIM function.

RTRIM removes a set of characters from the right of a string. RTRIM stands for "right trim". The general format for this function is:

RTRIM(string[, characters_to_remove])

Syntax

The syntax for the Oracle/PLSQL RTRIM function is:

RTRIM( string1, [ trim_string ] )

string1 is trimmed from the right-hand side.

trim_string is the string that will be removed from, default to space.

Example

By default the RTRIM removes the spaces:


SQL> SELECT RTRIM('days           ') FROM dual;

RTRI
----
days

SQL>

Remove a letter:


SQL> SELECT RTRIM('days', 's') FROM dual;

RTR
---
day

SQL>

CREATE TABLE EMP (EMPNO NUMBER(4) NOT NULL,
                  ENAME VARCHAR2(10),
                  JOB VARCHAR2(9),
                  SAL NUMBER(7, 2),
                  DEPTNO NUMBER(2));
-- w  w w. j  a  v a2 s  .co m
INSERT INTO EMP VALUES (1, 'SMITH', 'CLERK',     800,    20);
INSERT INTO EMP VALUES (2, 'ALLEN', 'SALESMAN', 1600,    30);
INSERT INTO EMP VALUES (3, 'WARD',  'SALESMAN', 1250,    30);
INSERT INTO EMP VALUES (4, 'JONES', 'MANAGER',  2975,    20);
INSERT INTO EMP VALUES (5, 'MARTIN','SALESMAN', 1250,    30);
INSERT INTO EMP VALUES (6, 'BLAKE', 'MANAGER',  2850,    30);
INSERT INTO EMP VALUES (7, 'CLARK', 'MANAGER',  2850,    10);
INSERT INTO EMP VALUES (8, 'SCOTT', 'ANALYST',  3000,    20);
INSERT INTO EMP VALUES (9, 'KING',  'PRESIDENT',3000,    10);
INSERT INTO EMP VALUES (10,'TURNER','SALESMAN', 1500,    30);
INSERT INTO EMP VALUES (11,'ADAMS', 'CLERK',    1500,    20);

SQL> select ename, rtrim(ename,'N') from emp;

ENAME      RTRIM(ENAM
---------- ----------
SMITH      SMITH
ALLEN      ALLE
WARD       WARD
JONES      JONES
MARTIN     MARTI
BLAKE      BLAKE
CLARK      CLARK
SCOTT      SCOTT
KING       KING
TURNER     TURNER
ADAMS      ADAMS

11 rows selected.

SQL>