ADO.NET Provider for Yahoo! Ads

Build 23.0.8839

SharedCriteria

Create, Read or delete negative keyword to negative keyword list.

Table Specific Information

Select

The 本製品 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 本製品.

  • AccountId supports the '='.
  • CriterionId supports the '=,IN'.
  • SharedListId supports the '=,IN'.

For example, the following queries are processed server side:

SELECT * FROM SharedCriteria WHERE AccountId = '1234339' AND CriterionId = '14761881'

INSERT

Insert can be executed by specifying the AccountId, SharedListId, KeywordMatchType, Text 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 SharedCriteria (AccountId, SharedListId, KeywordMatchType, Text) VALUES (1234339, '25648', 'EXACT', 'Test Keyword')

DELETE

Delete can be executed by specifying the AccountId, SharedListId in the WHERE Clause. For example:

DELETE FROM SharedCriteria WHERE AccountId = '1234339' AND CriterionId = '14761881' AND SharedListId = '25648'

Columns

Name Type ReadOnly References Description
CriterionId [KEY] Int64 True

Criterion ID.

AccountId Int64 True

SearchAdsAccounts.AccountId

Account ID.

SharedListId Int64 True

Account shared list ID.

KeywordMatchType String False

Describes keyword match type.

使用できる値は次のとおりです。EXACT, PHRASE, BROAD, UNKNOWN

Text String False

Keyword.

Use String False

Describes keyword type.

使用できる値は次のとおりです。NEGATIVE, UNKNOWN

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.

Copyright (c) 2024 CData Software, Inc. - All rights reserved.
Build 23.0.8839