CONCAT
This page describes the CONCAT function in Lenses SQL.
CONCAT(expr1, expr2, expr3)Processors
SQL Studio
USE `kafka`;
SELECT
CONCAT(first_name,' ', last_name),
first_name,
last_name
FROM users-topic
LIMIT 1;{
"value": {
"CONCAT": "Jose Hood",
"first_name": "Jose",
"last_name": "Hood"
}
}Last updated
Was this helpful?

