Created
September 27, 2019 20:20
-
-
Save zuzannamj/3b739f9656d292852f8b9e86a8182e63 to your computer and use it in GitHub Desktop.
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
SELECT | |
o.SubscriberKey, | |
ea.Gender | |
FROM _Open o | |
INNER JOIN ENT._EnterpriseAttribute ea ON o.SubscriberID = ea._SubscriberID | |
WHERE ea.Gender = 'Female' | |
AND o.EventDate > dateadd(d,-7,getdate()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment