SELECT
campaign.app_campaign_setting.app_id,
campaign.app_campaign_setting.app_store,
segments.date
FROM campaign
WHERE customer.id = account_id
AND segments.date = date
gets way less result than this one:
SELECT
campaign.app_campaign_setting.app_id,
campaign.app_campaign_setting.app_store,
FROM campaign
WHERE customer.id = account_id
AND segments.date = date
Can you explain to me how the presence of the segments.date column in the select clause affects the query result?
Thank you!
Felicity
![]() |
Google Ads API Team |