CONCAT (Azure Stream Analytics)
Returns a string that is the result of concatenating two or more string values.
CONCAT ( string_value1, string_value2 [, string_valueN ] )
string_value
A string value to concatenate to the other values.
nvarchar(max)
CONCAT implicitly converts null values to empty strings. If CONCAT receives arguments with all NULL values, it will return an empty string.
SELECT
Make,
Model,
CONCAT ( 'Make: ', Make, ', Model: ', Model) AS MakeModel
FROM Input
Make | Model | MakeModel |
---|---|---|
Contoso | QRTZX22 | Make: Contoso, Model: QRTZX22 |