In T-SQL, SPACE() function is used to add spaces to a string. For e.g.
@s = 'He' + space(5) + 'llo'
Output
He llo
So is there any function in PL/SQL that is equivalent to SPACE()?
Thank you.
|
|
In T-SQL, SPACE() function is used to add spaces to a string. For e.g.
Output
So is there any function in PL/SQL that is equivalent to SPACE()? Thank you.
|
||
|
|
|
|
You can use RPAD or LPAD functions
or in PL/SQL it would be:
|
||
|
|