I am trying to extract week from date using the function
format_timestamp('%V', DATE)
but Bigquery documentation says "Monday as the first day of the week".
Is there a way where I can specify Tuesday as first day of week.
I have achieved the same in Redshift using
date_part(week, date + interval '-1 day')
Is it possible in Bigquery?