RTRIM function removes trailing characters : RTRIM « Char Functions « Oracle PL / SQL
- Oracle PL / SQL
- Char Functions
- RTRIM
RTRIM function removes trailing characters
SQL> --RTRIM function removes trailing characters.
SQL>
SQL> SELECT RTRIM('S' , 'STEVENS') AS TRIM FROM Dual;
T
-
SQL>
Related examples in the same category