BigQuery add new columns into nested STRUCT in subquery
问题 I have the following table that contains nested STRUCT s, and in a subquery, I am trying to add additional columns at the struct level . I've created a reproducible example of my efforts thus far: WITH wide_stats AS ( ( SELECT 'joe' name, 'bills' team, struct(struct(7 as fga, 5 as fgm) as o, struct(8 as fga, 3 as fgm) as d) as t1, struct(struct(3 as fga, 4 as fgm) as o, struct(9 as fga, 2 as fgm) as d) as t2 ) UNION ALL ( SELECT 'nick' name, 'jets' team, struct(struct(12 as fga, 7 as fgm) as