fork download
  1. CREATE TEMP FUNCTION add_Four_and _Divide(X INT64,Y INT64)RETURNS FLOAT64 AS((X+4)/Y);
  2. SELECT VAL,add_Four_and_Divide(VAL,2)FROM UNNEST([2,3,6,8]) AS VAL;
Success #stdin #stdout #stderr 0.01s 5276KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Error: near line 1: near "FUNCTION": syntax error
Error: near line 2: no such table: UNNEST