CONCAT - String
Concatenates two string values
Input parameters
Name | Type | Optional | Description |
---|---|---|---|
str1 |
String | False | First string to concatenate |
str2 |
String | False | Second string to concatenate |
Output
String: combination of str1
and str2
Usage
CONCAT(<str1>, <str2>)
Examples
Example 1
Query
LOAD tmp
AS ('': CONCAT("Hello", "World"))
Result
"HelloWorld"