Last active
September 23, 2020 20:43
-
-
Save marketingclouded/95fed983b1abbec42adceba0947cae94 to your computer and use it in GitHub Desktop.
Tracking Inactive Subscribers in SFMC: Updates Subscriber_Last_Open w _Open and _Job Info
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 | |
g.SubscriberID, | |
MAX(a.EventDate) AS 'LastOpenDate', | |
MAX(a.JobID) AS 'JobID', | |
y.EmailName | |
FROM Subscriber_Last_Open g | |
JOIN _Open a | |
ON g.SubscriberID = a.SubscriberID | |
JOIN _Job y | |
ON a.JobID = y.JobID | |
GROUP BY g.SubscriberID, y.EmailName |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment