I'm new in bigquery. I have tried to look for how can i resolve this problem but i didn't find the topic. Sorry if there is already one created.
I create a table with a Google Drive Sheets, i selected automatic format when I uploaded the info. So, I have this table:
- Camp name / Type / Mode
- Cost__EUR_ / INTEGER / NULLABLE
I just see my "cost" camp name doesn't have comma but in my sheets there is the comma. I need it because I use all the data in Euros.
The result is "65000" when the correct answer would be 650,00. I see NUMBERFORMAT function but I don't know how to use it.
How can I add my comma again?
I have this code:
SELECT
producto,
SUM(Cost__EUR_) as Cost
FROM `test-261316.reach.cost_2019`
WHERE
producto = 'One'
GROUP BY
producto
thanks so much!