For example, I have the following table:
| Block |
| abcdefgh,12kjkjkj,231wewoxyz|
How can I convert it into:
| Block1 | Block2 | Block3 |
| abcdefgh | 12kjkjkj | 231wewoxyz |
Note:
- Each "Block" has a maximum of 8 commas (and hence can be split into 9 smaller blocks). The number of commas varies; some have 8 commas, some have 4, some have 7, etc. Each smaller block will occupy a column.
I use Presto, btw.