SPLIT (Lakehouse v2)
Splits a string by a delimiter and returns an array.
Analyze Syntax
Section titled “Analyze Syntax”func.split(<str>, <delimiter>)Analyze Examples
Section titled “Analyze Examples”func.split('a,b,c', ',')
┌───────────────┐│ ['a','b','c'] │└───────────────┘SQL Syntax
Section titled “SQL Syntax”SPLIT(<str>, <delimiter>)SQL Examples
Section titled “SQL Examples”SELECT SPLIT('a,b,c', ',');
┌───────────────┐│ ["a","b","c"] │└───────────────┘