Use rtim to remove space : RTRIM « Char Functions « Oracle PL / SQL
- Oracle PL / SQL
- Char Functions
- RTRIM
Use rtim to remove space
SQL>
SQL> select '"' || rtrim( 'Some String ' ) || '"' "A String"
2 from dual
3 /
A String
-------------
"Some String"
1 row selected.
SQL>
SQL> --
Related examples in the same category