TRIM
This page describes the TRIM function in Lenses SQL.
TRIM(expr)Processors
SQL Studio
USE `kafka`;
SELECT
LPAD(product_name, 50, ' '),
TRIM(LPAD(product_name, 50, ' ')),
product_name
FROM products-topic
LIMIT 1;{
"value": {
"LPAD": " Soft Shirt",
"TRIM": "Soft Shirt",
"product_name": "Soft Shirt"
}
}Last updated
Was this helpful?

