Apache Pinot Docs
latest
Ask or search…
K
Comment on page

lpad

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

Signature

LPAD(col, size, pad)

Usage Examples

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