Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 397 Bytes

File metadata and controls

22 lines (15 loc) · 397 Bytes
description
This section contains reference documentation for the RPAD function.

rpad

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********