You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains 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
This query populates an author DE by Selecting everyone who is in the MacAlertList who is also in the Subscriptions DE
*/
SELECT a.[Subscriber Key]
FROM MacAlertList a
WHERE Alerts like '%2658519%'
AND EXISTS (SELECT [Subscriber Key] FROM Subscriptions s WHERE s.[SubscriberKey] = a.[Subscriber Key] AND s.[DE Name] = 'Alan Weisman author alert - 2658519')