跟踪效果
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
您可以在 GAQL 查询中选择 campaign_budget
的指标字段,以检索广告系列预算的效果统计信息。默认情况下,所有统计信息都会在预算一级进行汇总,每个预算对应一行。如果使用细分字段,则每个预算可能会出现多行。如需了解详情,请参阅细分。
以下 GAQL 查询会检索单个预算的转化效果,并按其 ID 进行过滤:
SELECT
segments.conversion_action,
metrics.value_per_conversion
FROM campaign_budget
WHERE campaign_budget.id = campaign_budget_id
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-08-26。
[null,null,["最后更新时间 (UTC):2025-08-26。"],[[["\u003cp\u003eCampaign budget performance statistics are retrieved using \u003ccode\u003ecampaign_budget\u003c/code\u003e metric fields in GAQL queries, aggregated by budget.\u003c/p\u003e\n"],["\u003cp\u003eSegmentation can result in multiple rows per budget, providing more granular performance data.\u003c/p\u003e\n"],["\u003cp\u003eThe provided example GAQL query demonstrates retrieving conversion performance for a specific campaign budget using its ID.\u003c/p\u003e\n"]]],[],null,["# Track Performance\n\nYou can retrieve the performance statistics for your campaign budgets by\nselecting metric fields of [`campaign_budget`](/google-ads/api/fields/v21/campaign_budget) in a\nGAQL query. By default all statistics are aggregated at the budget level, one\nrow per budget. If segment fields are used, you may get more than one row per\nbudget. See [segmentation](/google-ads/api/docs/concepts/retrieving-objects#segmentation) for\ndetails.\n\nThe following GAQL query retrieves conversion performance of a single budget,\nfiltering on its ID: \n\n```sql\nSELECT\n segments.conversion_action,\n metrics.value_per_conversion\nFROM campaign_budget\nWHERE campaign_budget.id = campaign_budget_id\n```"]]