ADO.NET Provider for Yahoo! Ads

Build 23.0.8839

AccountSharedLists

Create, Read, Update or Delete ad information of negative keyword list which can be shared within the account.

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 '='.
  • SharedListId supports the '=,IN'.

For example:

SELECT * FROM AccountSharedLists WHERE AccountId = '123436'

SELECT * FROM AccountSharedLists WHERE AccountId = '123436' AND SharedListId = '25648'

INSERT

Insert can be executed by specifying the AccountId and Name 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  AccountSharedLists (AccountId, Name) VALUES ('1234339', 'AccountSharedLists')

UPDATE

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

update AccountSharedLists SET Name = 'Testtestnew' WHERE AccountId = '1234339' AND SharedListId = '25683'

DELETE

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

DELETE FROM AccountSharedLists WHERE AccountId = '1234339' AND SharedListId = '25683'

Columns

Name Type ReadOnly References Description
SharedListId [KEY] Int64 True

Negative keyword list ID.

AccountId Int64 True

SearchAdsAccounts.AccountId

Account ID.

MemberCount Int64 False

Number of items on Negative keyword list (keyword excluded on search).

Name String False

Negative keyword list name.

ReferenceCount Int64 False

Number of campaigns which use negative 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