I got this error of "Syntax error: Unexpected keyword LEFT" from the following SQL (standard SQL) in BigQuery:
select left(cast(ts as string), 16) from temp.loc limit 1;
"ts" is a timestamp field and I wanted to get upto minutes of timestamp. Any idea?