我想将逗号分隔的值转换为 Redshift 中的行
例如:
store |location |products
-----------------------------
1 |New York |fruit, drinks, candy...
所需的输出是:
store |location | products
-------------------------------
1 |New York | fruit
1 |New York | drinks
1 |New York | candy
是否有任何简单的解决方案可以根据分隔符拆分单词并转换为行?我正在研究这个解决方案,但它还不起作用:https ://help.looker.com/hc/en-us/articles/360024266693-Splitting-Strings-into-Rows-in-the-Absence-of-Table -生成函数
任何建议将不胜感激。