Here is an example of what I'm trying to accomplish:
Case:
| column1 | column2 | json_column |
|---|---|---|
| One | Two | {'A': '1', 'B': '2', 'C': '3'} |
Desired output:
| column1 | column2 | json_column | B |
|---|---|---|---|
| One | Two | {'A': '1', 'B': '2', 'C': '3'} | 2 |
As seen here, json_column has been parsed and a new column 'B' has been created containing the value of key 'B' in the json_column.