Last active
October 1, 2018 20:03
-
-
Save mattm/674fc3938d5e0712c2a486f8da9d3bc5 to your computer and use it in GitHub Desktop.
Facebook Ad Insights Conversion Value
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select | |
campaign_id, | |
sum(value) as total_conversion_value | |
from facebook_ad_insights.ad_insights_action_values | |
where | |
action_type = 'offsite_conversion.fb_pixel_purchase' and | |
date = '2018-10-01' | |
group by 1 | |
order by 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment