I'm about to migrate queries from Legacy to Standard in BQ.
In Legacy I used to have x/y
returning null
if y=0
, however, I'm stuck in StandardSQL with the error:
Error: division by zero
I'd like to apply something like IFERROR(x/y,null)
Is it available in StandardSQL?