CampaignWebpages
Create, Read or Delete excluded settings of PageFeedItem for campaign.
Table Specific Information
Select
The connector will use the Yahoo! Ads API to process WHERE clause conditions built with the following column and operator. The AccountId is required to make a request and the rest of the filter is executed client-side within the connector.
- AccountId supports the '='.
- CampaignId supports the '=,IN'.
- WebpageTargetId supports the '=,IN'.
For example:
SELECT * FROM CampaignWebpages WHERE AccountId = '25687' SELECT * FROM CampaignWebpages WHERE AccountId = '25687' AND CampaignId IN ('456971') SELECT * FROM CampaignWebpages WHERE AccountId = '25687' AND WebpageTargetId IN('8520')
INSERT
Insert can be executed by specifying the AccountId,CampaignId and WebpageTargetId columns. The columns that are not read-only can be inserted optionally. Following is an example of how to insert into this table
INSERT INTO SearchAdsCampaignWebpageParameterConditions#TEMP (Argument, Operator, Type) VALUES ('url', 'CONTAINS', 'URL') INSERT INTO CampaignWebpages (AccountId, CampaignId, WebpageTargetId, WebpageParameterConditions) VALUES ('4698', '12365', '4312', 'SearchAdsCampaignWebpageParameterConditions#TEMP')
DELETE
Delete can be executed by specifying the AccountId and CampaignId in the WHERE Clause.
For example:
DELETE FROM CampaignWebpages WHERE AccountId = '78955' AND CampaignId = '3245' AND WebpageTargetId = '1001'
Columns
Name | Type | ReadOnly | References | Description |
WebpageTargetId [KEY] | Int64 | True |
Unique ID for each webpage. | |
AccountId | Int64 | True |
SearchAdsAccounts.AccountId |
Account ID. |
CampaignId | Int64 | True |
SearchAdsCampaigns.CampaignId |
Campaign ID. |
CampaignTrackId | Int64 | False |
Campaign Tracking ID. | |
WebpageParameterConditions | String | False |
Object contains the rules of webpage. | |
WebpageTargetTrackId | Int64 | False |
Unique tracking ID for each CampaignWebpageServiceWebpage. |
Pseudo-Columns
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
ReferenceNumber | String |
This column will be used in Bulk operations to get specific values from the Temp tables. |