I\'m using big query and i want to create a job which populates a table with a \"record\" type columns. The data will be populated by a query - so how can i write a query wh
You need to use the dot notation to reflect the output as a RECORD example query:
dot
RECORD
select 'florida' as country.state, 'SFO' as country.city;
In this example country is the record and state|city are fields in the record.
country
state|city