Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 352 Bytes

File metadata and controls

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

LPAD

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