This function is used to return a string of a specified length. If the length of the given string (str1) is shorter than the specified length (length), the given string is left-padded with str2 to the specified length.
lpad(string <str1>, int <length>, string <str2>)
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
str1 |
Yes |
STRING |
String to be left-padded |
length |
Yes |
STRING |
Number of digits to be padded to the left |
str2 |
No |
STRING |
String used for padding |
The return value is of the STRING type.
The value ZZabcdefgh is returned.
select lpad('abcdefgh', 10, 'ZZ');
The value abcde is returned.
select lpad('abcdefgh', 5, 'ZZ');
An empty string is returned.
select lpad('abcdefgh', 0, 'ZZ');
The value NULL is returned.
select lpad(null ,0, 'ZZ');