Created
September 23, 2020 20:45
-
-
Save marketingclouded/4dbf88ec11dd88cf65785dd5c661e324 to your computer and use it in GitHub Desktop.
Tracking Inactive Subscribers in SFMC: Create Filter Criteria for Inactive_Subscribers
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 * | |
FROM Subscriber_Last_Open | |
WHERE LastOpenDate < DATEADD(d,-90,GETDATE()) AND Status = 'Active' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment