I would like to convert float value 2.0 into 2.00 in the output. How can i achieve the same in bigquery?
e.g. I have value 6412.7 as an input. I would like to have output like 6412.70.
I would like to convert float value 2.0 into 2.00 in the output. How can i achieve the same in bigquery?
e.g. I have value 6412.7 as an input. I would like to have output like 6412.70.
Copyright © 2021 Jogjafile Inc.
SELECT CAST(1200.555 AS STRING FORMAT '999,999.99') as a;