I have a bigquery table which i want to left outer join with public dataset bigquery-public-data.crypto_bitcoin.transactions. As transactions table has two nested fields inputs and outputs. The result of join also has nested values. I want to remove those.
SELECT *
FROM `asymmetric-glow-274808.mydataset.txid` as mytable
LEFT JOIN `bigquery-public-data.crypto_bitcoin.transactions` as datasource
ON mytable.string_field_3 = datasource.hash
LIMIT 1
Example
mytable
txid
1
transactions
hash inputs.index inputs.type outputs.index outputs.type
1 0 aaa 0 aaa
1 bbb 1 bbb
After join im getting
txid hash inputs.index inputs.type outputs.index outputs.type
1 1 0 aaa 0 aaa
1 bbb 1 bbb
what i want
txid hash inputs.index inputs.type outputs.index outputs.type
1 1 0 aaa 0 aaa
1 1 1 bbb 1 bbb
how to do it?