Is there a standard way to return "day of week number" (1-7) in ISO standard (Monday = 1) from a date in BigQuery using built in functions?
EXTRACT(DAYOFWEEK, <date>) returns a number using US format i.e. Sunday = 1, which doesn't work for my purpose.
I can create a custom function to calculate the ISO day of week number but I'm not sure whether I'm missing something built in that I can use instead.