我想在Bigquery中划分两个列

时间:2019-01-18 09:46:10

标签: google-bigquery

在Bigquery中,我希望将A列除以B列作为C列。

例如git show --quiet --pretty=format:%an origin/branch-name,在bigquery中是不可能的。

错误:SELECT prix / surface as prixmcarre FROM 'appartement'

在Google Cloud Document中,没有看到简单的解决方案。

感谢您的帮助:)

1 个答案:

答案 0 :(得分:1)

您必须使用看起来像整数或浮点数的字符串。您需要投放它们。例如:

select cast('10' as INT64) / cast('5' as INT64)

enter image description here