'google ads api group clause

I am currently using the below query from https://developers.google.com/google-ads/api/fields/v10/ad_group_bid_modifier_query_builder

  SELECT ad_group_bid_modifier.device.type, ad_group_bid_modifier.bid_modifier, ad_group.name, ad_group.id, campaign.id, campaign.name FROM ad_group_bid_modifier PARAMETERS omit_unselected_resource_names=true

which returns the records for each device(MOBILE, TABLET, DESKTOP, etc..) in a separate row for a given ad_group.id, campaign.id makes partial duplicate records.

Is there any way I combine these rows and get them back with a query?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source