SPLIT
Splits a string into an array using the specified delimiter.
Category: String Functions
Syntax
SPLIT(string, delimiter)SPLIT(string, delimiter, limit)Arguments
- string
varcharString input value. - delimiter
varcharSeparator used to split the input string. - limit
integerMaximum number of items or splits to return.
Returns
array<element type of string> — Returns an array whose element type is the string type of string — the parts are substrings of the input, so the element type is fixed and known.