I'm trying to create a view with StandardSQL that will automatically have the most updated data every time you open it (BigQuery creates a file with the traffic data per day with the date in the name extension).
I'm using something like
FROM `whatever.ga_sessions_201*` as GA WHERE _TABLE_SUFFIX BETWEEN '70101' AND '81231'
Even though this works when I wanna run the query normally, it does not when I try to create a view with it. I guess I could use a scheduled query but was wondering if there is any way to build a view with an open date frame (just like views work on Athena if the files are correctly uploaded to the S3 bucket you are pointing at).
Thanks in advance!