LPAD
This page describes the LPAD function in Lenses SQL.
LPAD(strExpr, lengthExpr, padExpr)Processors
SQL Studio
USE `kafka`;
SELECT
LPAD(email, 50, ' '),
email
FROM users-topic
LIMIT 1;{
"value": {
"LPAD": " [email protected]",
"email": "[email protected]"
}
}Last updated
Was this helpful?

