converting array of strings to single row values
问题 I have records in Big Query table as name value Aashis ["AB",AC"] Rahul ["AA",AD"] Here name and value column is String Type I want the output as name value Aashis AB Aashis AC Rahul AA Rahul AD 回答1: Below is for BigQuery Standard SQL #standardSQL SELECT name, value FROM `project.dataset.table`, UNNEST(value) value You can test, play with above using dummy data from your question as below #standardSQL WITH `project.dataset.table` AS ( SELECT 'Aashis' name, ["AB","AC"] value UNION ALL SELECT