Google Transfer Service from AdWords to BigQuery
问题 We are using google's transfer service in order to export data from AdWords directly into BigQuery. While everything seems to work fine, the campaigns' cost is roughly 50% of the actual cost. I'm referring to table CampaignStats and to field 'Cost' (divided by 1 million of course). Example of a query is: select Date, sum (Cost)/1000000 Cost from `adwords.CampaignStats_xxxxxxxxxx` where Date >= '2018-06-01' group by Date order by Date Any idea? Thanks in advance. 来源: https://stackoverflow.com