【发布时间】:2019-09-17 23:13:40
【问题描述】:
我正在尝试在 BQ 中选择一些列并收到有关重复 ID 的投诉:
Duplicate column names in the result are not supported. Found duplicate(s): id
我使用的查询是:
SELECT
billing_account_id,service.id,service.description,sku.id
FROM `billing-management-edab.billing_dataset.gcp_billing_export_v1_blah_blah_blah`
为什么 service.id 和 sku.id 被认为是重复的?我怎样才能在我的查询中解决这个问题?
【问题讨论】:
标签: google-bigquery