I am trying to sort out how to change this array so that it shows the returned values across multiple columns instead of together.
SELECT
handle,
fdc.identifiers
FROM table.fdc
Code returns the following
| Handle | Identifier |
|---|---|
| 1234 | 3123 |
| 1233 | |
| 1232 | |
| 3456 | 1231 |
| 3411 | |
| 2321 | |
| 1235 |
The code returns all of the identifiers in one column. Can they be split out to multiple columns?
I would like the table to look like this below:
| Handle | Identifier | ||
|---|---|---|---|
| 1234 | 3123 | 1233 | 1232 |
| 3456 | 1231 | 3411 | |
| 2321 | |||
| 1235 |
The code returns all of the identifiers in one column. Can they be split out to multiple columns?
