description |
---|
This section contains reference documentation for the RPAD function. |
string padded from the right side with pad
to reach final size
RPAD(col, size, pad)
SELECT RPAD('Hello, World', '20', '*') AS value
FROM ignoreMe
value |
---|
Hello, World******** |