Hello, the error in the title occers every time and I would like to know how to solve.
My code is below.
You have a dot as a last character in the last column of your select clause "a.MeanThroughputMbps."
It's treating the rest of your query as still part of the column name of a.MeanThroughputMbps.
Remove the dot and the query should work.
If you remove the . before the FROM, it may work.
Hi @nacchi,
Welcome to Google Cloud Community!
I agree with @mars124 and @mdideles; you may want to review their suggestions.
For additional insights, you might find the BigQuery documentation on on Standard SQL Query Syntax: SELECT List helpful. Here are some key points to consider:
By reviewing these syntax rules in the documentation, you can better align your query structure and address potential issues.
I hope the above information is helpful.