ประสิทธิภาพระดับแคมเปญ
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
การดูประสิทธิภาพของแคมเปญ Performance Max จะคล้ายกับการดูประสิทธิภาพของแคมเปญประเภทอื่นๆ อย่างไรก็ตาม
คุณต้องเพิ่มตัวกรองเพื่อให้รวมเฉพาะแคมเปญที่มี
advertising_channel_type
เท่ากับ PERFORMANCE_MAX
ตัวอย่างเช่น การค้นหาต่อไปนี้จะแสดงประสิทธิภาพของแคมเปญ Performance Max ทั้งหมดในช่วง 30 วันที่ผ่านมา
นอกจากนี้ คุณยังจำกัดผลลัพธ์ให้แสดงแคมเปญเดียวได้โดยการกรองใน campaign.id
หรือ
campaign.resource_name
ซึ่งสอดคล้องกับการรายงานชิ้นงานในช่องทาง Performance Max ใน UI ของ 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
แสดงเมตริกการแสดงผลตําแหน่งสําหรับแคมเปญ Performance Max เพื่อรับ
ข้อมูลเชิงลึกเกี่ยวกับตําแหน่งที่โฆษณาของแคมเปญแสดง คําค้นหาต่อไปนี้
แสดงวิธีดึงข้อมูลการแสดงผลตามตําแหน่งสําหรับแคมเปญ Performance
Max ที่เฉพาะเจาะจงในช่วง 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 Developers Java เป็นเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2025-08-27 UTC
[null,null,["อัปเดตล่าสุด 2025-08-27 UTC"],[],[],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"]]