Big Query - Transpose arrays into colums
问题 We have a table in Big Query like below. Input table: Name | Interests -----+---------- Bob | ["a"] Sue | ["a","b"] Joe | ["b","c"] We want to convert the above table to below format to make it BI/Visualisation friendly. Target/Required table: +------------------+ | Name | a | b | c | +------------------+ | Bob | 1 | 0 | 0 | | Sue | 1 | 1 | 0 | | Joe | 0 | 1 | 0 | +------------------+ Note: The Interests column is an array datatype. Is this sort of transformation possible in Big Query? If yes