Created
March 16, 2020 19:25
-
-
Save hsteiger/f5c7dff9909d809cb8616d461f253b3c to your computer and use it in GitHub Desktop.
This file contains hidden or 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 distinct e.email | |
from mwz.mw_list_subscriber e | |
where exists (select 1 | |
from mwz.mw_campaign_track_open | |
where subscriber_id = e.subscriber_id); | |
#Export All Base Emails | |
select distinct email | |
from mwz.mw_list_subscriber; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment