Skip to main content
Version: Latest-3.2

split

Description

This function splits a given string according to the separators, and returns the split parts in ARRAY.

Syntax

ARRAY<VARCHAR> split(VARCHAR content, VARCHAR delimiter)

Examples

mysql> select split("a,b,c",",");
+---------------------+
| split('a,b,c', ',') |
+---------------------+
| ["a","b","c"] |
+---------------------+

mysql> select split("a,b,c",",b,");
+-----------------------+
| split('a,b,c', ',b,') |
+-----------------------+
| ["a","c"] |
+-----------------------+

mysql> select split("abc","");
+------------------+
| split('abc', '') |
+------------------+
| ["a","b","c"] |
+------------------+

keyword

SPLIT