Click to copy
Working With Strings • Reviewed for ksqlDB 0.29
How to Concatenate Strings in ksqlDB
You can either use the ||
or +
operator to join two strings together.
SELECT first_name + ' ' + last_name
FROM USERS;
SELECT first_name || ' ' || last_name
FROM USERS;
Was this article helpful?