Skip to content

Instantly share code, notes, and snippets.

@zuzannamj
Last active March 5, 2021 09:29
Embed
What would you like to do?
select
s.subscriberkey
from _sent s
left join _open o
on s.jobid = o.jobid and s.listid = o.listid and s.batchid = o.batchid and s.subscriberid = o.subscriberid and o.isunique = 1
left join _click c
on s.jobid = c.jobid and s.listid = c.listid and s.batchid = c.batchid and s.subscriberid = c.subscriberid and c.isunique = 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment