Apache Presto - split (stringa, delimitatore)
Query
presto:default> select split('apache presto','e') as string_split;
Risultato
string_split
-------------------
[apach, pr, sto]
presto:default> select split('apache presto','e') as string_split;
string_split
-------------------
[apach, pr, sto]