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