When receiving metrics from ad_group_ad , I would like to receive an hourly report. I checked the document and it says that segments.hour cannot be used in ad_group_ad. How can I receive a report by hour?
The query below is the query being used to receive daily reports from ad_group_ad.
SELECT
ad_group_ad.ad.responsive_display_ad.business_name,
ad_group.id,
ad_group_ad.ad.id,
ad_group_ad.ad.name, ad_group_ad.status, ad_group_ad.policy_summary.policy_topic_entries, ad_group_ad.policy_summary.review_status, ad_group_ad.policy_summary.approval_status, ad_group_ad.ad.type, ad_group_ad.ad.image_ad.image_url, ad_group_ad.ad.final_urls, ad_group_ad.ad.url_collections, ad_group_ad.ad.video_responsive_ad.call_to_actions, ad_group_ad.ad.image_ad.mime_type, ad_group_ad.ad.responsive_display_ad.marketing_images, ad_group_ad.ad.video_responsive_ad.videos, metrics.clicks, metrics.impressions, metrics.cost_micros, segments.date
FROM ad_group_ad
WHERE ad_group_ad.status IN ("ENABLED","PAUSED","REMOVED") AND segments.date = "{$date}"