I have a query: SELECT campaign.id, campaign.name, label.id, label.name, campaign.campaign_budget, campaign.status FROM campaign_label WHERE campaign.status = 'ENABLED' LIMIT 5
which works fine and returns the data I need. But If I want to use LIMIT with offset, it fails: SELECT campaign.id, campaign.name, label.id, label.name, campaign.campaign_budget, campaign.status FROM campaign_label WHERE campaign.status = 'ENABLED' LIMIT 0, 5 - this would return "Google Ads failure details: query_error: Error in query: unexpected input ,." Can't figure out what am I doing wrong? Thank you -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API and Google Ads API Forum" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/adwords-api?hl=en --- You received this message because you are subscribed to the Google Groups "AdWords API and Google Ads API Forum" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-api/dc78c38e-71e6-4a73-b310-6fd09f4864d3n%40googlegroups.com.
