CREATE TEMP FUNCTION add_Four_and _Divide(X INT64,Y INT64)RETURNS FLOAT64 AS((X+4)/Y); SELECT VAL,add_Four_and_Divide(VAL,2)FROM UNNEST([2,3,6,8]) AS VAL;
Standard input is empty
Standard output is empty
Error: near line 1: near "FUNCTION": syntax error Error: near line 2: no such table: UNNEST