Created
September 23, 2020 20:32
-
-
Save marketingclouded/2ac4243d37821434a8f5557ee1fd9136 to your computer and use it in GitHub Desktop.
Tracking Email Performance in SFMC: Updates Rates in Email_Performance_Sched
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 | |
JobID, | |
CAST(Unsubscribes as DECIMAL(18,2)) / CAST(Sent AS DECIMAL(18,2)) * 100 AS 'UnsubRate', | |
CAST(Opens as DECIMAL(18,2)) / CAST(Sent AS DECIMAL(18,2)) * 100 AS 'OpenRate', | |
CAST(Clicks as DECIMAL(18,2)) / CAST(Sent AS DECIMAL(18,2)) * 100 AS 'CTR', | |
CAST(Bounces as DECIMAL(18,2)) / CAST(Sent AS DECIMAL(18,2)) * 100 AS 'BounceRate' | |
FROM Email_Performance_Sched |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment