In BigQuery, I have a table with a column that produces long string values similar to the one provided below. There are two main parts of the string: cust_no and comp_no. Each part contains a "value" and "updated_at_ms". I am trying to extract these both cust_no and comp_no with their "value" as two new columns. "Updated_at_ms" is not necessary.
{"$cust_no": {"value": "90164F59-1120-4F2B-811D-7FEDE3CEF701", "updated_at_ms": 1600301818327}, "$comp_no": {"value": "1548715734691-5404642", "updated_at_ms": 1600301818327}}
Anyone know how I can do this extraction? Any help is appreciated. Thank you in advance.
