Try this query...
SELECT A.SubscriberKey, B.CreatedDate, EventDate,Count(EventDate) as "count"
FROM _Open A
JOIN _ListSubscribers B
ON A.SubscriberKey = B.SubscriberKey
WHERE (B.ListID = '10630') AND (B.CreatedDate Between 'Jan 10 2009' AND 'Nov 06 2012')
(AND EventDate > (DATE-180))
Group By A.SubscriberKey,B.CreatedDate,EventDate
↧