Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danieldrasdo/3203fe17a40893eff88c27daf76cd188 to your computer and use it in GitHub Desktop.
Save danieldrasdo/3203fe17a40893eff88c27daf76cd188 to your computer and use it in GitHub Desktop.
SFMC SQL select profile attributes values from the EnterpriseAtrributes data view
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