标签: google-bigquery
在Bigquery中,我希望将A列除以B列作为C列。
例如git show --quiet --pretty=format:%an origin/branch-name,在bigquery中是不可能的。
git show --quiet --pretty=format:%an origin/branch-name
错误:SELECT prix / surface as prixmcarre FROM 'appartement'
SELECT prix / surface as prixmcarre FROM 'appartement'
在Google Cloud Document中,没有看到简单的解决方案。
感谢您的帮助:)
答案 0 :(得分:1)
您必须使用看起来像整数或浮点数的字符串。您需要投放它们。例如:
select cast('10' as INT64) / cast('5' as INT64)