Select A.SubscriberKey, A.EventDate,B.CreatedDate
From _Click A
JOIN _ListSubscribers B
ON A.SubscriberKey = B.SubscriberKey
Where B.ListID = '10630' AND B.CreatedDate > (Select DATEADD(day,-180,getdate())) AND A.EventDate IS NULL
Group By A.SubscriberKey,B.CreatedDate, A.EventDate
目前,没有任何东西被退回。我想返回订阅者订阅者密钥(这是他们的电子邮件)、事件日期(点击发生的日期)以及他们没有点击任何内容时的添加日期(创建日期)。谁能帮我指出正确的方向?感谢大家!