I have a json string in bigquery that looks like that:
{"1":"eggs","2":"nuts","3":"fish"}
How could I extract all values without listing the keys? What I need is:
['eggs', 'nuts', 'fish']
I've tried [json_extract(json_string, '$[1]'), json_extract(json_string, '$[2]')]
and it does the job but it won't work if the number of keys increases