BigQuery で文字列から数値の配列を生成する方法のメモ。
select array(select cast(e as float64) from unnest(split("1, 2, 3", ",")) e) as vector ;
select array(select cast(e as float64) from unnest(split("1, 2, 3", ",")) e) as vector ;