create a table with a column type RECORD
问题 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 which returns "record" type columns. Thanks! 回答1: Somehow option proposed by Pentium10 never worked for me in GBQ UI or API Explorer. I might be missing something Meantime, the workaround I found is as in below example SELECT location.state, location.city FROM JS( ( // input table SELECT NEST(CONCAT(state, ',', city)) AS