exclude campaign name

I've used this line to include campaign names that contains "Test" like this:

'WHERE CampaignName CONTAINS "Test" '

How can I exclude the campaign name? I've tried NOT CONTAINS and it doesn't work.


If you want to select all the campaigns that not contains "Test" you can use this:

WHERE CampaignName DOES_NOT_CONTAIN_IGNORE_CASE 'Test'

See the column Operators on https://developers.google.com/adwords/api/docs/guides/awql?hl=en

链接地址: http://www.djcxy.com/p/32358.html

上一篇: 开发商

下一篇: 排除广告系列名称