Click to copy

• 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;
Discover what readers are saying
topictale
Get easy to digest how-tos on ksqlDB
Sign up
Please read our Privacy Policy to understand how we protect and manage your data.
You may also like