select rpad( '*', 5, '*' ) : RPAD « Char Functions « Oracle PL / SQL
- Oracle PL / SQL
- Char Functions
- RPAD
select rpad( '*', 5, '*' )
SQL>
SQL>
SQL> select rpad( '*', 5, '*' )
2 from dual
3 /
RPAD(
-----
*****
1 row selected.
SQL>
SQL> --
Related examples in the same category