Forked from wvpv/sfmc-sql-enterprise-attributes.sql
Last active
December 20, 2017 21:49
-
-
Save danieldrasdo/3203fe17a40893eff88c27daf76cd188 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 _EnterpriseAttribute a with (nolock) | |
inner join _Subscribers s with (nolock) on (s.subscriberID = a._SubscriberID) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment