I am writing a customSQL in Tableau to import data from BigQuery.
Columns in BigQuery View Column1 | VALUE(Type = Numeric)
I want to CAST the "VALUE" column to Float, so that the column appears in Tableau
My current SQL query: SELECT Column1, CAST(VALUE as Float) from Table 1
The above statement is giving me an error. Any idea?