CONCAT (Lakehouse v2)
Concatenates two or more strings.
Analyze Syntax
Section titled “Analyze Syntax”func.concat(<str1>, <str2>[, ...])Analyze Examples
Section titled “Analyze Examples”func.concat('Star', 'Rocks')
┌─────────────┐│ 'StarRocks' │└─────────────┘SQL Syntax
Section titled “SQL Syntax”CONCAT(<str1>, <str2>[, ...])SQL Examples
Section titled “SQL Examples”SELECT CONCAT('Star', 'Rocks');
┌───────────┐│ StarRocks │└───────────┘