I have three BigQuery tables as shown below
Employee
Employee_id | Department_id | Location_id | Name | Age
Department
Department_id | Department_Name | Department_Code
Location
Location_id | Country | State | City
Below Query is used to join all three tables,
SELECT
e.Employee_id,
e.Name,
e.Age,
e.Department_id,
d.Department_Name,
d.Department_Code,
l.Location_id,
l.Country ,
l.State,
l.City
FROM Employee e
JOIN Department d
ON e.Department_id = d. Department_id
JOIN Location l
ON e.Location_id = l.Location_id
How to insert this result set into BigQuery table which has below schema with nested fields using bq command line utility(bq query command)?