I have a column named fruits:
CREATE TABLE fruits (fruits varchar(50));
INSERT INTO analytics.fruits
values
('apple')
('banana')
('lemon')
('kiwi')
;
| fruits |
|---|
| apple, banana, lemon, kiwi |
I want to split that column into multiple rows, one row per element in the string:
| fruits |
|---|
| apple |
| banana |
| lemon |
| kiwi |
How can I do that in Exasol?
I haven't used Exasol but maybe with this code that works you can figure out, how to work with Exasol
This code is from MySQL