Using reporting, I only want to pull ads where one of these stats -- Impressions, Clicks, Conversions -- is greater than zero. In MySQL I would do something like this:
SELECT Id, Impressions, Clicks, Conversions, Status FROM AD_PERFORMANCE_REPORT WHERE CampaignId = $remote_service_ID AND (Impressions > 0 OR Clicks > 0 OR Conversions > 0) DURING $dateRange
But as far as I can tell there is no support for "OR" in AWQL. Can you recommend a way to do this?
Thanks,
Brandon