Last active
June 15, 2019 19:00
-
-
Save wvpv/f9afc474ad3e3ae316cd to your computer and use it in GitHub Desktop.
SFMC SQL select profile attributes values from the EnterpriseAtrributes data view
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 | |
a.customerID | |
, s.emailAddress | |
from EnterpriseAttributes a | |
inner join _Subscribers s on (s.subscriberID = a.subscriberID) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment