Greetings!
I need to fetch the total amount spent on ads on a per day basis. The query I created for this is the following:
SELECT metrics.cost_micros,
campaign.idFROM ad_group
WHERE segments.date = '%s'
AND metrics.cost_micros > 0
Is this the correct way to fetch this information? is there a way to improve the performance of this query, as I usually need to fetch at least a month of costs per request.
Thanks!