Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. s.SubscriberKey,
  2. s.JobID,
  3. s.BatchID,
  4. convert(char(19),s.EventDate,20) as SendDate
  5. from [_sent] s
  6. left join [_open] o
  7. on s.JobID = o.JobID and s.ListID = o.ListID and s.BatchID = o.BatchID and s.SubscriberID = o.SubscriberID and o.IsUnique = 1
  8. where
  9. s.JobID = JobID
  10. and o.SubscriberID is NULL```
  11.  
  12. I am having trouble to get the JobId from the original email sent and fill it in the query.
  13.  
  14. Can some one guide / help me in this Mkt Cloud issue.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement