ADO.NET Provider for Yahoo! Ads

Build 23.0.8839

SearchKeywordList

Read, add, update or delete the search 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 '='.
  • SearchKeywordListId supports the 'IN,='.

For example:

SELECT * FROM SearchKeywordList WHERE AccountId = '1002504155'

SELECT * FROM SearchKeywordList WHERE AccountId = '1002504155' AND SearchKeywordListId = '1002346070'

INSERT

Insert can be executed by specifying the AccountId, SearchKeyword and SearchKeywordListName 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 SearchKeywordListSearchKeywords#TEMP (SearchKeywordId) VALUES ('1000023142')
INSERT INTO SearchKeywordList(AccountId, SearchKeyword, SearchKeywordListName) VALUES ('1002504155', 'SearchKeywordListSearchKeywords#TEMP', 'test')

UPDATE

Update can be executed by specifying the AccountId and SearchKeywordListId in the WHERE Clause. The columns that are not read-only can be Updated. For example:

INSERT INTO SearchKeywordListSearchKeywords#TEMP (SearchKeywordId) VALUES ('1000023142')
UPDATE SearchKeywordList SET SearchKeywordListName = 'TestSearch', SearchKeyword = 'SearchKeywordListSearchKeywords#TEMP' WHERE AccountId = '1002504155' AND SearchKeywordListId = '1002346070'

DELETE

Delete can be executed by specifying the AccountId and SearchKeywordListId in the WHERE Clause. For example:

DELETE SearchKeywordList  WHERE AccountId = '1002504155' AND SearchKeywordListId = '1002346070'

Columns

Name Type ReadOnly References Description
SearchKeywordListId [KEY] Int64 True

Search keyword list ID.

AccountId Int64 True

DisplayAdsAccounts.AccountId

Account ID.

DeliveryStatus String False

Displays the status of search keyword list.

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

IsRemoveSearchKeywordListDescription String False

Flag for removing an information item

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

KeywordFrequency String False

Search frequency information on Search Keyword.The default value in ADD operation will be ONCE_OR_MORE.

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

デフォルト値はONCE_OR_MOREです。

KeywordRecency String False

Storing the effective period information of Search Keyword.The default value in ADD operation will be WITHIN_30DAYS.

使用できる値は次のとおりです。WITHIN_1DAY, WITHIN_3DAYS, WITHIN_7DAYS, WITHIN_14DAYS, WITHIN_30DAYS, UNKNOWN

デフォルト値はWITHIN_30DAYSです。

SearchKeyword String False

Display the search keyword.

SearchKeywordListDescription String False

Description of Search keyword list.

SearchKeywordListName String False

Name of Search keyword list.

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