Google Transfer Service from AdWords to BigQuery

不羁的心 提交于 2020-01-03 05:11:38

问题


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/questions/51008810/google-transfer-service-from-adwords-to-bigquery

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!