Bigquery one json data into bigquery table with elegant SQL
I have a bigquery table containing the below data(one column and one row) Josn {'A':{'min':0, 'max':10},'B':{'min':1, 'max':15},'C':{'min':10, 'max':18}} I want to convert the json data into a table as shown below Name min_value max_value A 0 10 B 1 15…