Hello,
AWQL:
select Impressions, Conversions, Cost, CostPerConversion, Ctr, Clicks, AdNetworkType1, Device, AverageCpc, SearchBudgetLostImpressionShare, SearchImpressionShare, Date FROM ACCOUNT_PERFORMANCE_REPORT where Device IN ['DESKTOP', 'HIGH_END_MOBILE', 'TABLET'] during 20201022, 20201022
Returns the following results:
GAQL
select metrics.impressions, metrics.conversions, metrics.cost_micros, metrics.cost_per_conversion, metrics.ctr, metrics.clicks, segments.device, segments.ad_network_type, metrics.average_cpc, metrics.search_budget_lost_impression_share, metrics.search_impression_share, segments.date FROM customer WHERE segments.device IN ('DESKTOP', 'MOBILE', 'TABLET') AND segments.date = 20201022
Retruns the following results:
How come they do not produce the same results?
KDJ