Can you please help me with my question, i am new to Bigquery.
I have a table with multiple "record" type fields. I need to delete a row from one of the record. Consider below example as:
id date subid.id subid.flag
1234 1/4/2020 1234-1 1
1234-2 1
1234-3 1
1234-4 -1
5678 1/5/2020 5678-1 1
5678-2 1
My requirement from the above is to delete the row from the structure subid with flag -1. What is the best way to do this ? Please help.