I am currently working with a very simple table on BigQuery and each row has two repeated columns class_numbers [REPEATED INTEGER] and class_
class_numbers
[REPEATED INTEGER]
class_
Using standard SQL, you can use UNNEST(...) WITH OFFSET. For example,
UNNEST(...) WITH OFFSET
SELECT class_number, class_descriptions[OFFSET(off)] AS class_description FROM MyTable, UNNEST(class_numbers) AS class_number WITH OFFSET off;