Apache Pinot Docs
latest
Search
⌃K

rpad

This section contains reference documentation for the RPAD function.
string padded from the right side with pad to reach final size

Signature

RPAD(col, size, pad)

Usage Examples

SELECT RPAD('Hello, World', '20', '*') AS value
FROM ignoreMe
value
Hello, World********
Last modified 1yr ago