广告系列级效果
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
查看效果最大化广告系列的效果与查看任何其他广告系列类型效果的方式类似。不过,您必须添加一个过滤条件,以仅包含 advertising_channel_type
等于 PERFORMANCE_MAX
的广告系列。
例如,以下查询会返回过去 30 天内所有效果最大化广告系列的效果。您还可以通过过滤 campaign.id
或 campaign.resource_name
将结果限制为单个广告系列。这与 Google Ads 界面中的“效果最大化”渠道的素材资源报告相对应。
SELECT
metrics.impressions,
metrics.clicks,
metrics.conversions,
metrics.cost_micros
FROM campaign
WHERE campaign.advertising_channel_type = 'PERFORMANCE_MAX'
AND segments.date DURING LAST_30_DAYS
performance_max_placement_view
可公开效果最大化广告系列的展示位置展示指标,以便深入了解广告系列的广告展示位置。以下查询展示了如何检索特定效果最大化广告系列在过去 30 天内的展示次数(按展示位置)。
SELECT
performance_max_placement_view.display_name,
performance_max_placement_view.placement,
performance_max_placement_view.placement_type,
performance_max_placement_view.target_url,
metrics.impressions,
campaign.id
FROM performance_max_placement_view
WHERE
campaign.id = CAMPAIGN_ID
AND segments.date DURING LAST_30_DAYS
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-08-27。
[null,null,["最后更新时间 (UTC):2025-08-27。"],[],[],null,["# Campaign level performance\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\nViewing Performance Max campaign performance is similar to [viewing the\nperformance for any other campaign type](/google-ads/api/docs/reporting/example). However,\nyou must add a filter to include only campaigns with an\n[`advertising_channel_type`](/google-ads/api/fields/v21/campaign#campaign.advertising_channel_type)\nequal to `PERFORMANCE_MAX`.\n\nPerformance for all Performance Max campaigns\n---------------------------------------------\n\nFor example, the following query returns the performance for all Performance Max\ncampaigns over the last 30 days. You can also limit the results to a single\ncampaign by filtering on [`campaign.id`](/google-ads/api/fields/v21/campaign#campaign.id) or\n[`campaign.resource_name`](/google-ads/api/fields/v21/campaign#campaign.resource_name). This\ncorresponds to the [Performance Max channel asset\nReporting](//support.google.com/google-ads/answer/10725056) in the Google Ads\nUI. \n\n SELECT\n metrics.impressions,\n metrics.clicks,\n metrics.conversions,\n metrics.cost_micros\n FROM campaign\n WHERE campaign.advertising_channel_type = 'PERFORMANCE_MAX'\n AND segments.date DURING LAST_30_DAYS\n\nPerformance Max campaign placements\n-----------------------------------\n\nThe [`performance_max_placement_view`](/google-ads/api/fields/v21/performance_max_placement_view)\nexposes placement impression metrics for Performance Max campaigns to gain\ninsights into where a campaign's ads were shown. The following query\ndemonstrates how to retrieve impressions by placement for a specific Performance\nMax campaign during the last 30 days. \n\n SELECT\n performance_max_placement_view.display_name,\n performance_max_placement_view.placement,\n performance_max_placement_view.placement_type,\n performance_max_placement_view.target_url,\n metrics.impressions,\n campaign.id\n FROM performance_max_placement_view\n WHERE\n campaign.id = \u003cvar translate=\"no\"\u003e\u003cspan class=\"devsite-syntax-n\"\u003eCAMPAIGN_ID\u003c/span\u003e\u003c/var\u003e\n AND segments.date DURING LAST_30_DAYS"]]